nix-community.nixvim/tests/test-sources/plugins/by-name/copilot-vim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
370 B
Nix
Raw Normal View History

{
empty = {
plugins.copilot-vim.enable = true;
};
example = {
plugins.copilot-vim = {
enable = true;
settings = {
filetypes = {
"*" = false;
python = true;
};
proxy = "localhost:3128";
proxy_strict_ssl = false;
workspace_folders = [ "~/Projects/myproject" ];
};
};
};
}