replace lsp_signature with better alternative

This commit is contained in:
2024-03-31 12:31:20 -04:00
parent 46d34d9151
commit dec8d0cb14
3 changed files with 2 additions and 13 deletions

View File

@ -24,6 +24,7 @@ cmp.setup {
{ name = 'neorg' },
{ name = 'calc' },
{ name = 'cmdline' },
{ name = 'nvim_lsp_signature_help' }
}),
window = {

View File

@ -1,12 +0,0 @@
local status_ok, lspsignature = pcall(require, "lsp_signature")
if not status_ok then
return
end
lspsignature.setup {
hint_enable = false,
floating_window = true,
handler_opts = {
border = "shadow"
}
}