mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
fix(nvimtree-lua): disable cursor-line to false
This commit is contained in:
parent
498e8b7c80
commit
30f02163d2
2 changed files with 7 additions and 0 deletions
|
@ -79,7 +79,9 @@ in {
|
|||
width = ${toString cfg.view.width},
|
||||
side = ${"'" + cfg.view.side + "'"},
|
||||
adaptive_size = ${boolToString cfg.view.adaptiveSize},
|
||||
cursorline = ${boolToString cfg.view.cursorLine}
|
||||
},
|
||||
|
||||
git = {
|
||||
enable = ${boolToString cfg.git.enable},
|
||||
ignore = ${boolToString cfg.git.ignore},
|
||||
|
|
|
@ -182,6 +182,11 @@ with builtins; {
|
|||
description = "Width of the tree in charecters";
|
||||
type = types.int;
|
||||
};
|
||||
cursorLine = mkOption {
|
||||
default = false;
|
||||
description = "Whether to display the cursor line in NvimTree";
|
||||
type = types.bool;
|
||||
};
|
||||
};
|
||||
|
||||
git = {
|
||||
|
|
Loading…
Reference in a new issue