mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
49 lines
862 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|