plugins/mini-ai: init

This commit is contained in:
Heitor Augusto 2025-05-23 18:35:06 -03:00
parent 4dc8d1e918
commit 8becbdf768
No known key found for this signature in database
GPG key ID: 53C04F8F46A1A344
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-ai";
moduleName = "mini.ai";
packPathName = "mini.ai";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
n_line = 500;
search_method = "cover_or_nearest";
silent = true;
};
}

View file

@ -0,0 +1,17 @@
{
empty = {
plugins.mini-ai.enable = true;
};
example = {
plugins.mini-ai = {
enable = true;
settings = {
n_lines = 500;
search_method = "cover_or_nearest";
silent = true;
};
};
};
}