nvim: switch to cmp's signature plugin

This commit is contained in:
mequidis
2022-09-10 14:24:31 +03:00
parent 5578c545a9
commit 4e620e02d7
4 changed files with 5 additions and 17 deletions

View File

@ -35,6 +35,7 @@ require("packer").startup(function()
use({ "hrsh7th/cmp-vsnip", after = "nvim-cmp" })
use({ "hrsh7th/cmp-buffer", after = "nvim-cmp" })
use({ "hrsh7th/cmp-path", after = "nvim-cmp" })
use({ "hrsh7th/cmp-nvim-lsp-signature-help", after = "nvim-cmp" })
-- snippets
use({
@ -50,14 +51,6 @@ require("packer").startup(function()
after = "vim-vsnip",
})
-- lsp signature
use({
"ray-x/lsp_signature.nvim",
config = function()
require("plugins.lspsignature")
end,
})
-- autopairs
use({
"windwp/nvim-autopairs",