This commit is contained in:
Heitor Augusto 2025-06-20 13:15:15 +00:00 committed by GitHub
commit 69249bc244
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
};
};
};
}