1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-20 13:02:39 +00:00
dotfiles/.config/nvim/lua/plugins/lsp/lsp-saga.lua

40 lines
588 B
Lua
Raw Normal View History

2023-04-12 18:09:30 +00:00
require("lspsaga").setup({
ui = {
border = "rounded",
2023-07-21 13:56:56 +00:00
code_action_icon = "",
},
2023-09-22 17:48:39 +00:00
lightbulb = {
sign = false,
},
code_action = {
show_server_name = true,
2024-02-16 15:37:22 +00:00
extend_gitsigns = true,
2023-09-22 17:48:39 +00:00
},
rename = {
auto_save = true,
keys = {
quit = "<ESC>",
},
},
finder = {
max_height = 0.5,
min_width = 30,
force_max_height = false,
2023-07-21 13:56:56 +00:00
default = "def+tyd+ref+imp",
keys = {
2023-07-21 13:56:56 +00:00
toggle_or_open = "<CR>",
},
},
preview = {
2023-03-14 17:42:09 +00:00
lines_above = 6,
},
outline = {
2023-03-14 17:42:09 +00:00
win_width = 55,
2022-11-12 17:39:10 +00:00
auto_preview = false,
},
symbol_in_winbar = {
2023-09-15 19:17:32 +00:00
enable = false,
2023-09-22 17:48:39 +00:00
folder_level = 3,
},
2022-11-12 17:39:10 +00:00
})