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

27 lines
411 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 = "",
},
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,
-- folder_level = 3,
},
2022-11-12 17:39:10 +00:00
})