mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-17 16:02:48 +01:00
20 lines
315 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|