mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-04 22:34:31 +02:00
14 lines
285 B
Nix
14 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;
|
|
};
|
|
}
|