1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/by-name/aider/default.nix
2025-09-04 00:38:19 +00:00

49 lines
862 B
Nix

{
empty = {
plugins.aider.enable = true;
};
defaults = {
plugins.aider = {
enable = true;
settings = {
auto_manage_context = true;
default_bindings = true;
debug = false;
ignore_buffers = [
"^term://"
"NeogitConsole"
"NvimTree_"
"neo-tree filesystem"
];
};
};
};
example = {
plugins.aider = {
enable = true;
settings = {
auto_manage_context = false;
default_bindings = false;
debug = true;
vim = true;
ignore_buffers = [ ];
border = {
style = [
""
""
""
""
""
""
""
""
];
color = "#fab387";
};
};
};
};
}