mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-09 15:01:13 +00:00
25 lines
354 B
Lua
25 lines
354 B
Lua
local status_ok, lsp_saga = pcall(require, "lspsaga")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
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,
|
|
},
|
|
})
|