mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
26 lines
420 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|