small fix

This commit is contained in:
2025-01-06 18:42:36 +03:00
parent ad33ed3c0e
commit 8e6b274df1
4 changed files with 33 additions and 12 deletions

View File

@ -13,9 +13,10 @@ return {
fn.sign_define("DiagnosticSignError", { text = "", texthl = "DiagnosticSignError" })
fn.sign_define("DiagnosticSignWarn", { text = "", texthl = "DiagnosticSignWarn" })
fn.sign_define("DiagnosticSignInfo", { text = "", texthl = "DiagnosticSignInfo" })
fn.sign_define("DiagnosticSignHint", { text = " ", texthl = "DiagnosticSignHint" })
fn.sign_define("DiagnosticSignHint", { text = " ", texthl = "DiagnosticSignHint" })
require("neo-tree").setup({
-- popup_border_style = "rounded",
default_component_configs = {
modified = {
symbol = "",

15
lua/plugins/searchbox.lua Normal file
View File

@ -0,0 +1,15 @@
return {
"VonHeikemen/searchbox.nvim",
dependencies = {
"MunifTanjim/nui.nvim",
},
config = function()
require("searchbox").setup({
popup = {
win_options = {
winhighlight = "Normal:Normal,FloatBorder:BorderBG,CursorLine:PmenuSel,Search:None",
},
},
})
end,
}