This commit is contained in:
Yaser Alraddadi 2024-10-15 04:58:18 +03:00
parent 9e9ec4ff6e
commit 86aa580d9b
No known key found for this signature in database
GPG Key ID: 808212144E6DBE90
2 changed files with 2 additions and 10 deletions

View File

@ -902,6 +902,7 @@ require('lazy').setup({
-- into multiple repos for maintenance purposes.
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
'hrsh7th/cmp-nvim-lsp-signature-help',
},
config = function()
-- See `:help cmp`
@ -980,6 +981,7 @@ require('lazy').setup({
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'path' },
{ name = 'nvim_lsp_signature_help' },
},
}
end,

View File

@ -1,10 +0,0 @@
return {
{
'ray-x/lsp_signature.nvim',
event = 'VeryLazy',
opts = {},
config = function(_, opts)
require('lsp_signature').setup(opts)
end,
},
}