plugins/mini-cursorword: init

This commit is contained in:
Heitor Augusto 2025-05-25 15:40:29 -03:00
parent 1c5c991fda
commit e7443b895f
No known key found for this signature in database
GPG key ID: 53C04F8F46A1A344
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-cursorword";
moduleName = "mini.cursorword";
packPathName = "mini.cursorword";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
delay = 50;
};
}

View file

@ -0,0 +1,14 @@
{
empty = {
plugins.mini-cursorword.enable = true;
};
example = {
plugins.mini-cursorword = {
enable = true;
settings = {
delay = 50;
};
};
};
}