Files
2026-05-23 09:25:51 +02:00

21 lines
314 B
Nix

{ ... }:
{
plugins.cursorline = {
enable = true;
settings = {
cursorline = {
enable = true;
timeout = 0;
number = false;
};
cursorword = {
enable = true;
minLength = 3;
hl = {
underline = true;
};
};
};
};
}