Skip to content

Commit e779f91

Browse files
committed
plugins/aider: init
1 parent 9f036a4 commit e779f91

File tree

2 files changed

+74
-0
lines changed

2 files changed

+74
-0
lines changed

plugins/by-name/aider/default.nix

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{ lib, ... }:
2+
lib.nixvim.plugins.mkNeovimPlugin {
3+
name = "aider";
4+
package = "aider-nvim";
5+
6+
maintainers = with lib.maintainers; [
7+
c4patino
8+
];
9+
10+
settingsExample = {
11+
auto_manage_context = false;
12+
default_bindings = false;
13+
debug = true;
14+
vim = true;
15+
ignore_buffers = [ ];
16+
border = {
17+
style = [
18+
"╭"
19+
"─"
20+
"╮"
21+
"│"
22+
"╯"
23+
"─"
24+
"╰"
25+
"│"
26+
];
27+
color = "#fab387";
28+
};
29+
};
30+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
empty = {
3+
plugins.aider.enable = true;
4+
};
5+
6+
defaults = {
7+
auto_manage_context = true;
8+
default_bindings = true;
9+
debug = false;
10+
ignore_buffers = [
11+
"^term://"
12+
"NeogitConsole"
13+
"NvimTree_"
14+
"neo-tree filesystem"
15+
];
16+
};
17+
18+
example = {
19+
plugins.aerial = {
20+
enable = true;
21+
22+
settings = {
23+
auto_manage_context = false;
24+
default_bindings = false;
25+
debug = true;
26+
vim = true;
27+
ignore_buffers = [ ];
28+
border = {
29+
style = [
30+
"╭"
31+
"─"
32+
"╮"
33+
"│"
34+
"╯"
35+
"─"
36+
"╰"
37+
"│"
38+
];
39+
color = "#fab387";
40+
};
41+
};
42+
};
43+
};
44+
}

0 commit comments

Comments
 (0)