nix-community.nixvim/tests/test-sources/plugins/by-name/mini-cursorword/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
192 B
Nix
Raw Normal View History

2025-05-25 15:40:29 -03:00
{
empty = {
plugins.mini-cursorword.enable = true;
};
example = {
plugins.mini-cursorword = {
enable = true;
settings = {
delay = 50;
};
};
};
}