mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-24 10:14:03 -05:00
plugins/mini-hipatterns: init
This commit is contained in:
committed by
Austin Horstman
parent
4e04137157
commit
7061e274db
@@ -0,0 +1,16 @@
|
||||
{ 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{ lib, ... }:
|
||||
{
|
||||
empty = {
|
||||
plugins.mini-hipatterns.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.mini-hipatterns = {
|
||||
enable = true;
|
||||
settings = {
|
||||
highlighters = lib.nixvim.emptyTable;
|
||||
|
||||
delay = {
|
||||
text_change = 200;
|
||||
scroll = 50;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user