mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
dev(nvimtree-lua): rename cursorLine -> cursorline
This commit is contained in:
parent
24265c591d
commit
266fbac791
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ in {
|
||||||
width = ${toString cfg.view.width},
|
width = ${toString cfg.view.width},
|
||||||
side = ${"'" + cfg.view.side + "'"},
|
side = ${"'" + cfg.view.side + "'"},
|
||||||
adaptive_size = ${boolToString cfg.view.adaptiveSize},
|
adaptive_size = ${boolToString cfg.view.adaptiveSize},
|
||||||
cursorline = ${boolToString cfg.view.cursorLine}
|
cursorline = ${boolToString cfg.view.cursorline}
|
||||||
},
|
},
|
||||||
|
|
||||||
git = {
|
git = {
|
||||||
|
|
|
@ -182,7 +182,7 @@ with builtins; {
|
||||||
description = "Width of the tree in charecters";
|
description = "Width of the tree in charecters";
|
||||||
type = types.int;
|
type = types.int;
|
||||||
};
|
};
|
||||||
cursorLine = mkOption {
|
cursorline = mkOption {
|
||||||
default = false;
|
default = false;
|
||||||
description = "Whether to display the cursor line in NvimTree";
|
description = "Whether to display the cursor line in NvimTree";
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
|
|
Loading…
Reference in a new issue