Skip to content

Commit 660939f

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-ai: init
1 parent ee2c095 commit 660939f

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

plugins/by-name/mini-ai/default.nix

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{ lib, ... }:
2+
lib.nixvim.plugins.mkNeovimPlugin {
3+
name = "mini-ai";
4+
moduleName = "mini.ai";
5+
packPathName = "mini.ai";
6+
7+
maintainers = [ lib.maintainers.HeitorAugustoLN ];
8+
9+
settingsExample = {
10+
n_line = 500;
11+
search_method = "cover_or_nearest";
12+
silent = true;
13+
};
14+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
empty = {
3+
plugins.mini-ai.enable = true;
4+
};
5+
6+
example = {
7+
plugins.mini-ai = {
8+
enable = true;
9+
10+
settings = {
11+
n_lines = 500;
12+
search_method = "cover_or_nearest";
13+
silent = true;
14+
};
15+
};
16+
};
17+
}

0 commit comments

Comments
 (0)