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