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:
15
.config/nvim/lua/plugins/lsp/lsp-saga.lua
Normal file
15
.config/nvim/lua/plugins/lsp/lsp-saga.lua
Normal 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,
|
||||
},
|
||||
})
|
Reference in New Issue
Block a user