nix-community.nixvim/tests/test-sources/plugins/utils/cursorline.nix
2023-06-14 23:02:10 +02: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;
};
};
};
};
}