feat(lsp): add hints while passing arguments

- still in trial
This commit is contained in:
Fabrice Mouhartem 2024-10-24 12:38:46 +02:00
parent 989020e20f
commit 1f71c346f0
Signed by: fmouhart
GPG Key ID: 2C5033B228CFE4E7

View File

@ -26,6 +26,18 @@ require('lazy').setup({
'folke/neodev.nvim', 'folke/neodev.nvim',
}, },
}, },
-- LSP-signature
{
"ray-x/lsp_signature.nvim",
event = "InsertEnter",
opts = {
bind = true,
handler_opts = {
border = "rounded"
}
},
config = function(_, opts) require 'lsp_signature'.setup(opts) end
},
-- DAP: Debug Adapter Protocol -- DAP: Debug Adapter Protocol
'mfussenegger/nvim-dap', 'mfussenegger/nvim-dap',