1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-29 13:41:04 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-hipatterns/default.nix
Matt Sturgeon 824e048096 tests/fetch-tests: only apply required args
Using `functionArgs` and `intersectAttrs`, apply only the required args
to test module files.
2025-11-24 11:09:51 +00:00

20 lines
310 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;
};
};
};
};
}