mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-12-22 12:48:01 +00:00
[neovim] Improve lsp_saga visuals
This commit is contained in:
parent
febd607c46
commit
3907b78f40
@ -9,7 +9,7 @@ M.setup = function()
|
|||||||
local signs = {
|
local signs = {
|
||||||
{ name = "DiagnosticSignError", text = "" },
|
{ name = "DiagnosticSignError", text = "" },
|
||||||
{ name = "DiagnosticSignWarn", text = "" },
|
{ name = "DiagnosticSignWarn", text = "" },
|
||||||
{ name = "DiagnosticSignHint", text = "" },
|
{ name = "DiagnosticSignHint", text = "" },
|
||||||
{ name = "DiagnosticSignInfo", text = "" },
|
{ name = "DiagnosticSignInfo", text = "" },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,6 +3,18 @@ require("lspsaga").setup({
|
|||||||
border = "rounded",
|
border = "rounded",
|
||||||
code_action_icon = "",
|
code_action_icon = "",
|
||||||
},
|
},
|
||||||
|
lightbulb = {
|
||||||
|
sign = false,
|
||||||
|
},
|
||||||
|
code_action = {
|
||||||
|
show_server_name = true,
|
||||||
|
},
|
||||||
|
rename = {
|
||||||
|
auto_save = true,
|
||||||
|
keys = {
|
||||||
|
quit = "<ESC>",
|
||||||
|
},
|
||||||
|
},
|
||||||
finder = {
|
finder = {
|
||||||
max_height = 0.5,
|
max_height = 0.5,
|
||||||
min_width = 30,
|
min_width = 30,
|
||||||
@ -21,6 +33,6 @@ require("lspsaga").setup({
|
|||||||
},
|
},
|
||||||
symbol_in_winbar = {
|
symbol_in_winbar = {
|
||||||
enable = false,
|
enable = false,
|
||||||
-- folder_level = 3,
|
folder_level = 3,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user