Compare commits

..

No commits in common. "ae44ce21335797fd7301b0eaf3f28233ed072228" and "cf47ac19a87826e051ef630507d93e582da3109b" have entirely different histories.

2 changed files with 0 additions and 4 deletions

View File

@ -83,8 +83,6 @@ 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,11 +55,9 @@ 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 },
},
})