1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/aider/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

49 lines
870 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.__empty = { };
border = {
style = [
""
""
""
""
""
""
""
""
];
color = "#fab387";
};
};
};
};
}