1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 12:19:26 +00:00

[neovim] Add lsp_saga

This commit is contained in:
2022-11-12 18:39:10 +01:00
parent e04ec2d1b5
commit 9729277222
8 changed files with 35 additions and 32 deletions

View File

@ -0,0 +1,15 @@
local status_ok, lsp_saga = pcall(require, "lspsaga")
if not status_ok then
return
end
lsp_saga.init_lsp_saga({
border_style = "rounded",
code_action_icon = "",
preview_lines_above = 5,
max_preview_lines = 15,
show_outline = {
win_width = 45,
auto_preview = false,
},
})