Initial commit
This commit is contained in:
33
home/editors/nvim/plugins/cmp/copilot.nix
Normal file
33
home/editors/nvim/plugins/cmp/copilot.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
panel.enabled = false;
|
||||
|
||||
suggestion = {
|
||||
autoTrigger = true;
|
||||
keymap = {
|
||||
accept = "<M-l>";
|
||||
next = "<M-]>";
|
||||
prev = "<M-[>";
|
||||
dismiss = "<C-]>";
|
||||
};
|
||||
};
|
||||
|
||||
filetypes = {
|
||||
yaml = true;
|
||||
markdown = true;
|
||||
|
||||
javascript = true;
|
||||
typescript = true;
|
||||
|
||||
help = false;
|
||||
gitcommit = false;
|
||||
gitrebase = false;
|
||||
hgcommit = false;
|
||||
svn = false;
|
||||
cvs = false;
|
||||
"." = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user