mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
16 lines
355 B
Nix
16 lines
355 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "mini-hipatterns";
|
|
moduleName = "mini.hipatterns";
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
highlighters = lib.nixvim.nestedLiteral (lib.literalExpression "lib.nixvim.emptyTable");
|
|
|
|
delay = {
|
|
text_change = 200;
|
|
scroll = 50;
|
|
};
|
|
};
|
|
}
|