dev(nvimtree-lua): rename cursorLine -> cursorline

This commit is contained in:
NotAShelf 2023-05-19 15:19:16 +03:00
parent 24265c591d
commit 266fbac791
No known key found for this signature in database
GPG Key ID: F0D14CCB5ED5AA22
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ in {
width = ${toString cfg.view.width},
side = ${"'" + cfg.view.side + "'"},
adaptive_size = ${boolToString cfg.view.adaptiveSize},
cursorline = ${boolToString cfg.view.cursorLine}
cursorline = ${boolToString cfg.view.cursorline}
},
git = {

View File

@ -182,7 +182,7 @@ with builtins; {
description = "Width of the tree in charecters";
type = types.int;
};
cursorLine = mkOption {
cursorline = mkOption {
default = false;
description = "Whether to display the cursor line in NvimTree";
type = types.bool;