dotfiles/.config/nvim/lua/plugins/lsp/lsp-saga.lua

39 lines
562 B
Lua

require("lspsaga").setup({
ui = {
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,
force_max_height = false,
default = "def+tyd+ref+imp",
keys = {
toggle_or_open = "<CR>",
},
},
preview = {
lines_above = 6,
},
outline = {
win_width = 55,
auto_preview = false,
},
symbol_in_winbar = {
enable = false,
folder_level = 3,
},
})