From 86aa580d9b5e28f792635153958e52a16d5191a4 Mon Sep 17 00:00:00 2001 From: Yaser Alraddadi Date: Tue, 15 Oct 2024 04:58:18 +0300 Subject: [PATCH] update --- init.lua | 2 ++ lua/custom/plugins/lsp_signature.lua | 10 ---------- 2 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 lua/custom/plugins/lsp_signature.lua 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, - }, -}