initial import

This commit is contained in:
Fábio André Damas 2025-03-27 08:18:20 +00:00
commit f9f53656f7
32 changed files with 1064 additions and 0 deletions

View file

@ -0,0 +1,44 @@
return
{
'nvimdev/lspsaga.nvim',
config = function()
require('lspsaga').setup({
symbol_in_winbar = {
enable = true,
hide_keyboard = true,
},
lightbulb = {
enable = true,
enable_in_insert = true,
cache_code_action = true,
sign = true,
update_time = 150,
sign_priority = 20,
virtual_text = false,
},
diagnostic = {
extend_relatedInformation = true,
},
finder = {
keys = {
vsplit = "s",
split = "v",
toggle_or_open = "<CR>",
shuttle = "<TAB>",
},
},
outline = {
keys = {
toggle_or_jump = "<CR>",
},
},
implement = {
enable = false,
},
})
end,
dependencies = {
'nvim-treesitter/nvim-treesitter',
'nvim-tree/nvim-web-devicons',
}
}