mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
21 lines
368 B
Nix
21 lines
368 B
Nix
{
|
|
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"];
|
|
};
|
|
};
|
|
};
|
|
}
|