mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
19 lines
243 B
Nix
19 lines
243 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.copilot-vim.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.copilot-vim = {
|
||
|
enable = true;
|
||
|
|
||
|
filetypes = {
|
||
|
"*" = false;
|
||
|
python = true;
|
||
|
};
|
||
|
|
||
|
proxy = "localhost:3128";
|
||
|
};
|
||
|
};
|
||
|
}
|