mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-11 07:55:31 +00:00
fix: cursorline configuration
This commit is contained in:
parent
b68c0e32e7
commit
d126519514
3 changed files with 17 additions and 6 deletions
|
|
@ -42,13 +42,19 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
cursorWordline = {
|
||||
enable = mkEnableOption "word and delayed line highlight [nvim-cursorline].";
|
||||
cursorline = {
|
||||
enable = mkEnableOption "Enable line hightlighting on the cursor [nvim-cursorline]";
|
||||
|
||||
lineTimeout = mkOption {
|
||||
type = types.int;
|
||||
description = "Time in milliseconds for cursorline to appear";
|
||||
default = 500;
|
||||
default = 0;
|
||||
};
|
||||
|
||||
lineNumbersOnly = mkOption {
|
||||
type = types.bool;
|
||||
description = "Hightlight only in the presence of line numbers";
|
||||
default = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue