nix-community.nixvim/tests/test-sources/plugins/utils/cursorline.nix

25 lines
367 B
Nix
Raw Normal View History

2023-06-13 09:39:54 +02:00
{
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;
};
};
};
};
}