feat(nvim)!: remove deprecated codeium extension

This commit is contained in:
Moritz Böhme 2023-09-17 09:25:50 +02:00
parent d6ad810568
commit b0f0713781
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
5 changed files with 6 additions and 54 deletions

View file

@ -86,10 +86,6 @@ with builtins;
{ plugin = cmp-cmdline; }
{ plugin = cmp-nvim-lsp; }
{ plugin = cmp_luasnip; }
{
plugin = codeium-nvim;
opts = { };
}
{ plugin = friendly-snippets; }
{ plugin = lspkind-nvim; }
{ plugin = luasnip; }

View file

@ -8,9 +8,7 @@ cmp.setup({
mode = "symbol", -- show only symbol annotations
maxwidth = 50, -- prevent the popup from showing more than provided characters
ellipsis_char = "...", -- when popup menu exceed maxwidth, the truncated part would show ellipsis_char instead
symbol_map = {
Codeium = "",
},
symbol_map = {},
}),
},
snippet = {
@ -48,7 +46,6 @@ cmp.setup({
{ name = "async_path", priority = 1 },
{ name = "buffer", priority = 1 },
{ name = "luasnip", priority = 2 },
{ name = "codeium", priority = 3 },
{ name = "nvim_lsp", priority = 4 },
},
})