Compare commits

..

2 Commits

2 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,8 @@ with builtins;
{ plugin = cmp-cmdline; }
{ plugin = cmp-nvim-lsp; }
{ plugin = cmp_luasnip; }
{ plugin = cmp-spell; }
{ plugin = cmp-nvim-lsp-signature-help; }
{
plugin = copilot-cmp;
opts = { };

View File

@ -55,9 +55,11 @@ cmp.setup({
sources = {
{ name = "async_path", priority = 1 },
{ name = "buffer", priority = 1 },
{ name = "spell", priority = 1 },
{ name = "luasnip", priority = 2 },
{ name = "copilot", priority = 3 },
{ name = "nvim_lsp", priority = 3 },
{ name = "nvim_lsp_signature_help", priority = 3 },
},
})