1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/mini-hipatterns/default.nix
2025-11-02 12:39:42 +00:00

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;
};
};
}