1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 16:02:48 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-hipatterns/default.nix
2025-11-02 12:39:42 +00:00

20 lines
315 B
Nix

{ lib, ... }:
{
empty = {
plugins.mini-hipatterns.enable = true;
};
defaults = {
plugins.mini-hipatterns = {
enable = true;
settings = {
highlighters = lib.nixvim.emptyTable;
delay = {
text_change = 200;
scroll = 50;
};
};
};
};
}