nix-community.nixvim/tests/test-sources/plugins/by-name/cursorline/default.nix
2025-02-01 14:00:51 -06:00

26 lines
420 B
Nix

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