diff --git a/plugins/by-name/mini-cursorword/default.nix b/plugins/by-name/mini-cursorword/default.nix new file mode 100644 index 00000000..38a66aca --- /dev/null +++ b/plugins/by-name/mini-cursorword/default.nix @@ -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; + }; +} diff --git a/tests/test-sources/plugins/by-name/mini-cursorword/default.nix b/tests/test-sources/plugins/by-name/mini-cursorword/default.nix new file mode 100644 index 00000000..33277cc6 --- /dev/null +++ b/tests/test-sources/plugins/by-name/mini-cursorword/default.nix @@ -0,0 +1,14 @@ +{ + empty = { + plugins.mini-cursorword.enable = true; + }; + + example = { + plugins.mini-cursorword = { + enable = true; + settings = { + delay = 50; + }; + }; + }; +}