mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-05 06:44:33 +02:00
13 lines
248 B
Nix
13 lines
248 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.plugins.mkNeovimPlugin {
|
||
|
name = "mini-cursorword";
|
||
|
moduleName = "mini.cursorword";
|
||
|
packPathName = "mini.cursorword";
|
||
|
|
||
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
||
|
|
||
|
settingsExample = {
|
||
|
delay = 50;
|
||
|
};
|
||
|
}
|