[neovim] Migrate lsp-saga configuration to >=0.2.3

This commit is contained in:
Daniel Carrillo 2023-01-14 13:36:37 +01:00
parent 80d19db6d8
commit adf1a593f2
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 15 additions and 5 deletions

View File

@ -3,12 +3,22 @@ if not status_ok then
return
end
lsp_saga.init_lsp_saga({
border_style = "rounded",
code_action_icon = "",
preview_lines_above = 5,
show_outline = {
lsp_saga.setup({
ui = {
border = "rounded",
code_action_icon = "",
colors = {
normal_bg = "#222436",
},
},
preview = {
lines_above = 5,
},
outline = {
win_width = 45,
auto_preview = false,
},
symbol_in_winbar = {
enable = false,
},
})