feat(nvim): add cmp spell and signature plugins
parent
89104209e8
commit
8003f15242
|
@ -83,6 +83,8 @@ with builtins;
|
||||||
{ plugin = cmp-cmdline; }
|
{ plugin = cmp-cmdline; }
|
||||||
{ plugin = cmp-nvim-lsp; }
|
{ plugin = cmp-nvim-lsp; }
|
||||||
{ plugin = cmp_luasnip; }
|
{ plugin = cmp_luasnip; }
|
||||||
|
{ plugin = cmp-spell; }
|
||||||
|
{ plugin = cmp-nvim-lsp-signature-help; }
|
||||||
{
|
{
|
||||||
plugin = copilot-cmp;
|
plugin = copilot-cmp;
|
||||||
opts = { };
|
opts = { };
|
||||||
|
|
|
@ -55,9 +55,11 @@ cmp.setup({
|
||||||
sources = {
|
sources = {
|
||||||
{ name = "async_path", priority = 1 },
|
{ name = "async_path", priority = 1 },
|
||||||
{ name = "buffer", priority = 1 },
|
{ name = "buffer", priority = 1 },
|
||||||
|
{ name = "spell", priority = 1 },
|
||||||
{ name = "luasnip", priority = 2 },
|
{ name = "luasnip", priority = 2 },
|
||||||
{ name = "copilot", priority = 3 },
|
{ name = "copilot", priority = 3 },
|
||||||
{ name = "nvim_lsp", priority = 3 },
|
{ name = "nvim_lsp", priority = 3 },
|
||||||
|
{ name = "nvim_lsp_signature_help", priority = 3 },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue