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

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

27 lines
420 B
Nix
Raw Normal View History

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