nix-community.nixvim/tests/test-sources/plugins/completion/copilot-vim.nix

19 lines
243 B
Nix
Raw Normal View History

{
empty = {
plugins.copilot-vim.enable = true;
};
example = {
plugins.copilot-vim = {
enable = true;
filetypes = {
"*" = false;
python = true;
};
proxy = "localhost:3128";
};
};
}