Compare commits
2 Commits
cf47ac19a8
...
ae44ce2133
Author | SHA1 | Date |
---|---|---|
Moritz Böhme | ae44ce2133 | |
Moritz Böhme | 8003f15242 |
|
@ -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 = { };
|
||||
|
|
|
@ -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 },
|
||||
},
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue