small fix
This commit is contained in:
@ -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
15
lua/plugins/searchbox.lua
Normal 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,
|
||||
}
|
Reference in New Issue
Block a user