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

25 lines
357 B
Lua
Raw Normal View History

2023-04-12 18:09:30 +00:00
require("lspsaga").setup({
ui = {
border = "rounded",
code_action_icon = "",
},
finder = {
max_height = 0.5,
min_width = 30,
force_max_height = false,
keys = {
expand_or_jump = "<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 = {
enable = false,
},
2022-11-12 17:39:10 +00:00
})