nix-community.nixvim/tests/test-sources/plugins/by-name/cursorline/default.nix
2024-09-09 11:50:38 +01:00

24 lines
367 B
Nix

{
empty = {
plugins.cursorline.enable = true;
};
defaults = {
plugins.cursorline = {
enable = true;
cursorline = {
enable = true;
timeout = 1000;
number = false;
};
cursorword = {
enable = true;
minLength = 3;
hl = {
underline = true;
};
};
};
};
}