mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 10:33:49 -03:00
15 lines
249 B
Lua
15 lines
249 B
Lua
local M = {
|
|
"nvimdev/lspsaga.nvim",
|
|
}
|
|
|
|
M.config = function()
|
|
require("lspsaga").setup({
|
|
lightbulb = {
|
|
enable = false,
|
|
},
|
|
})
|
|
nmap("K", "<cmd>Lspsaga hover_doc<cr>")
|
|
nmap("pd", "<cmd>Lspsaga peek_definition<cr>")
|
|
end
|
|
|
|
return M
|