plugins/copilot-vim: switch to settings option

This commit is contained in:
Gaetan Lepage 2024-03-02 23:35:41 +01:00 committed by Gaétan Lepage
parent 7e279e6e91
commit dd238fb80b
2 changed files with 62 additions and 20 deletions

View file

@ -7,12 +7,15 @@
plugins.copilot-vim = {
enable = true;
filetypes = {
"*" = false;
python = true;
settings = {
filetypes = {
"*" = false;
python = true;
};
proxy = "localhost:3128";
proxy_strict_ssl = false;
workspace_folders = ["~/Projects/myproject"];
};
proxy = "localhost:3128";
};
};
}