This commit is contained in:
Heitor Augusto 2025-06-20 13:21:44 +00:00 committed by GitHub
commit addc57dbb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
};
};
};
}