feat: cursorlineopt config option

This commit is contained in:
NotAShelf 2023-05-19 15:14:25 +03:00
commit 4f8a035d82
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
2 changed files with 7 additions and 7 deletions

View file

@ -145,6 +145,12 @@ with builtins; {
description = "Follow editorconfig rules in current directory";
};
cursorlineOpt = mkOption {
type = types.enum ["line" "screenline" "number" "both"];
default = "line";
description = "Highlight the text line of the cursor with CursorLine hl-CursorLine";
};
enableLuaLoader = mkEnableOption "Enable the experimental Lua module loader to speed up the start up process";
};
}