diff --git a/lua/plugins/config/cmp.lua b/lua/plugins/config/cmp.lua index a87c070..93d1102 100644 --- a/lua/plugins/config/cmp.lua +++ b/lua/plugins/config/cmp.lua @@ -127,7 +127,6 @@ cmp.setup({ sources = { { name = "nvim_lsp", }, { name = "luasnip", }, - { name = "nvim_lsp_signature_help", }, { name = "nvim_lua", }, { name = "orgmode", }, { name = "path", }, diff --git a/lua/plugins/config/lsp_signature.lua b/lua/plugins/config/lsp_signature.lua deleted file mode 100644 index 96214f2..0000000 --- a/lua/plugins/config/lsp_signature.lua +++ /dev/null @@ -1,27 +0,0 @@ ---[[ - Copyright 2023 Oscar Wallberg - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -]] - --- https://github.com/ray-x/lsp_signature.nvim - -require("lsp_signature").setup({ - doc_lines = 20, - toggle_key = "", - hint_enable = false, - floating_window = true, - floating_window_above_cur_line = true, - floating_window_off_x = 0, - floating_window_off_y = 0, -}) diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 1db52ae..a86b120 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -67,14 +67,6 @@ local plugins = { { "hrsh7th/cmp-nvim-lsp", }, - { - "ray-x/lsp_signature.nvim", - event = "VeryLazy", - config = function () require("plugins.config.lsp_signature") end, - }, - --[[ { - "hrsh7th/cmp-nvim-lsp-signature-help", - }, ]] { "hrsh7th/nvim-cmp", config = function () require("plugins.config.cmp") end,