Added Lspsaga plugin, replaced original hover with lspsaga's hover_doc

command
This commit is contained in:
2025-08-12 02:22:02 +09:00
parent df5a293c00
commit 197b334e9c
+17
View File
@@ -0,0 +1,17 @@
return {
"nvimdev/lspsaga.nvim",
enabled = true,
dependencies = {
"nvim-treesitter/nvim-treesitter",
"nvim-tree/nvim-web-devicons",
},
config = function ()
require("lspsaga").setup({
lightbulb = { enable = false },
})
vim.lsp.buf.hover = function ()
vim.cmd("Lspsaga hover_doc")
end
end
}