feat(nvim): add copilot-cmp

This commit is contained in:
Moritz Böhme 2023-09-17 09:36:22 +02:00
parent bfbc3ad24f
commit 7078b97ee9
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 31 additions and 3 deletions

View file

@ -89,6 +89,23 @@ with builtins;
{ plugin = friendly-snippets; }
{ plugin = lspkind-nvim; }
{ plugin = luasnip; }
{
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")
'';
}
];
}
];
}
{