mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
25 lines
367 B
Nix
25 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|