feat(nvim): switch back to copilot

This commit is contained in:
Moritz Böhme 2024-01-06 11:45:54 +01:00
parent 07dfe50be0
commit ed1c1a6f69
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
5 changed files with 17 additions and 35 deletions

View file

@ -76,8 +76,21 @@ with builtins;
{ plugin = cmp-nvim-lsp; }
{ plugin = cmp_luasnip; }
{
plugin = codeium-nvim;
plugin = copilot-cmp;
opts = { };
dependencies = [
{
plugin = copilot-lua;
opts = {
suggestion = { enabled = false; };
panel = { enabled = false; };
};
conf = /* lua */ ''
require("copilot").setup(opts)
vim.cmd("Copilot disable")
'';
}
];
}
{ plugin = friendly-snippets; }
{ plugin = lspkind-nvim; }