mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-05 06:44:33 +02:00
15 lines
285 B
Nix
15 lines
285 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|