diff --git a/init.lua b/init.lua index e95927ec..9f82e384 100644 --- a/init.lua +++ b/init.lua @@ -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, diff --git a/lua/custom/plugins/lsp_signature.lua b/lua/custom/plugins/lsp_signature.lua deleted file mode 100644 index 15a7f44d..00000000 --- a/lua/custom/plugins/lsp_signature.lua +++ /dev/null @@ -1,10 +0,0 @@ -return { - { - 'ray-x/lsp_signature.nvim', - event = 'VeryLazy', - opts = {}, - config = function(_, opts) - require('lsp_signature').setup(opts) - end, - }, -}