[neovim] Improve lsp_saga visuals

This commit is contained in:
Daniel Carrillo 2023-09-22 19:48:39 +02:00
parent febd607c46
commit 3907b78f40
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
2 changed files with 14 additions and 2 deletions

View File

@ -9,7 +9,7 @@ M.setup = function()
local signs = {
{ name = "DiagnosticSignError", text = "" },
{ name = "DiagnosticSignWarn", text = "" },
{ name = "DiagnosticSignHint", text = "" },
{ name = "DiagnosticSignHint", text = "" },
{ name = "DiagnosticSignInfo", text = "" },
}

View File

@ -3,6 +3,18 @@ require("lspsaga").setup({
border = "rounded",
code_action_icon = "",
},
lightbulb = {
sign = false,
},
code_action = {
show_server_name = true,
},
rename = {
auto_save = true,
keys = {
quit = "<ESC>",
},
},
finder = {
max_height = 0.5,
min_width = 30,
@ -21,6 +33,6 @@ require("lspsaga").setup({
},
symbol_in_winbar = {
enable = false,
-- folder_level = 3,
folder_level = 3,
},
})