[CMP] Remove signature help
This commit is contained in:
@@ -3,13 +3,12 @@ return {
|
|||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
event = "InsertEnter",
|
event = "InsertEnter",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{ "hrsh7th/cmp-buffer" }, -- source for text in buffer
|
{ "hrsh7th/cmp-buffer" }, -- source for text in buffer
|
||||||
{ "hrsh7th/cmp-path" }, -- source for file system paths
|
{ "hrsh7th/cmp-path" }, -- source for file system paths
|
||||||
{ "L3MON4D3/LuaSnip" }, -- snippet engine
|
{ "L3MON4D3/LuaSnip" }, -- snippet engine
|
||||||
{ "saadparwaiz1/cmp_luasnip" }, -- for autocompletion
|
{ "saadparwaiz1/cmp_luasnip" }, -- for autocompletion
|
||||||
{ "rafamadriz/friendly-snippets" }, -- useful snippets
|
{ "rafamadriz/friendly-snippets" }, -- useful snippets
|
||||||
{ "onsails/lspkind.nvim" }, -- icons for cmp
|
{ "onsails/lspkind.nvim" }, -- icons for cmp
|
||||||
{ "hrsh7th/cmp-nvim-lsp-signature-help" }, -- signature help
|
|
||||||
},
|
},
|
||||||
|
|
||||||
config = function()
|
config = function()
|
||||||
@@ -91,11 +90,10 @@ return {
|
|||||||
|
|
||||||
-- sources for autocompletion
|
-- sources for autocompletion
|
||||||
sources = cmp.config.sources({
|
sources = cmp.config.sources({
|
||||||
{ name = "nvim_lsp" }, -- lsp
|
{ name = "nvim_lsp" }, -- lsp
|
||||||
{ name = "luasnip" }, -- snippets
|
{ name = "luasnip" }, -- snippets
|
||||||
{ name = "buffer" }, -- text within current buffer
|
{ name = "buffer" }, -- text within current buffer
|
||||||
{ name = "path" }, -- file system paths
|
{ name = "path" }, -- file system paths
|
||||||
{ name = "nvim_lsp_signature_help" }, -- signature help
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
formatting = {
|
formatting = {
|
||||||
|
|||||||
Reference in New Issue
Block a user