File tree Expand file tree Collapse file tree 2 files changed +74
-0
lines changed
tests/test-sources/plugins/by-name/aider Expand file tree Collapse file tree 2 files changed +74
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments