1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-14 22:42:45 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-cursorword/default.nix
2025-06-22 18:59:56 +00:00

14 lines
192 B
Nix

{
empty = {
plugins.mini-cursorword.enable = true;
};
example = {
plugins.mini-cursorword = {
enable = true;
settings = {
delay = 50;
};
};
};
}