add some more plugins
This commit is contained in:
parent
d5c62d938c
commit
45548c8f5f
11 changed files with 440 additions and 24 deletions
17
config/plugins/cmp/cmp-copilot.nix
Normal file
17
config/plugins/cmp/cmp-copilot.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
plugins.copilot-cmp = {
|
||||
enable = true;
|
||||
};
|
||||
plugins.copilot-lua = {
|
||||
enable = true;
|
||||
suggestion = {enabled = false;};
|
||||
panel = {enabled = false;};
|
||||
};
|
||||
|
||||
extraConfigLua = ''
|
||||
require("copilot").setup({
|
||||
suggestion = { enabled = false },
|
||||
panel = { enabled = false },
|
||||
})
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue