refactor(nvim): remove lsp_signature

Noice.nvim covers this functionality out of the box, no need to use
lsp_sig anymore
This commit is contained in:
Price Hiller 2022-10-28 12:30:47 -05:00
parent 1264a19fdc
commit 4d17de8802

View File

@ -263,19 +263,6 @@ return packer.startup({
end,
})
-- Display Lsp Signature
use({
"ray-x/lsp_signature.nvim",
config = function()
require("lsp_signature").setup({
hint_prefix = "",
hint_enable = true,
floating_window = false,
toggle_key = "<M-x>",
})
end,
})
-- Lsp From Null LS
use({
"jose-elias-alvarez/null-ls.nvim",