dev: revert nvimtree changes

This commit is contained in:
NotAShelf 2023-02-02 16:39:49 +03:00
parent 03b53d8c34
commit ffb9f85392
No known key found for this signature in database
GPG Key ID: 419DBDD3228990BE
1 changed files with 2 additions and 44 deletions

View File

@ -22,19 +22,13 @@ in {
};
treeWidth = mkOption {
default = 30;
default = 25;
description = "Width of the tree in charecters";
type = types.int;
};
adaptiveSize = mkOption {
default = true;
description = "Whether to enable adaptiveSize";
type = types.bool;
};
hideFiles = mkOption {
default = [".git" "node_modules" ".cache" ".idea"];
default = [".git" "node_modules" ".cache"];
description = "Files to hide in the file view by default.";
type = with types; listOf str;
};
@ -45,10 +39,6 @@ in {
type = types.bool;
};
highlightGit = {
mkEnableOption = "Enable git highlights";
};
openOnSetup = mkOption {
default = true;
description = "Open when vim is started on a directory";
@ -115,12 +105,6 @@ in {
type = types.bool;
};
hijackCursor = mkOption {
default = true;
description = "Keeps the cursor on the first letter of the filename when moving in the tree";
type = types.bool;
};
trailingSlash = mkOption {
default = true;
description = "Add a trailing slash to all folders";
@ -144,25 +128,6 @@ in {
description = "The command used to open a file with the associated default program";
type = types.str;
};
syncRootWithCwd = mkOption {
default = true;
description = "Changes the tree root directory on `DirChanged` and refreshes the tree";
type = types.bool;
};
updateFocusedFile = {
mkEnableOption = "Enable updateFocusedFile";
update_cwd = mkOption {
default = false;
description = "";
type = types.bool;
};
};
fileSystemWatchers = {
mkEnableOption = "Enable fileSystemWatchers";
};
};
config = mkIf cfg.enable {
@ -179,7 +144,6 @@ in {
require'nvim-tree'.setup({
disable_netrw = ${boolToString cfg.disableNetRW},
hijack_netrw = ${boolToString cfg.hijackNetRW},
hijack_cursor = ${boolToString cfg.hijackCursor},
open_on_tab = ${boolToString cfg.openTreeOnNewTab},
open_on_setup = ${boolToString cfg.openOnSetup},
open_on_setup_file = ${boolToString cfg.openOnSetup},
@ -190,13 +154,10 @@ in {
enable = ${boolToString cfg.lspDiagnostics},
},
view = {
adaptive_size = ${boolToString cfg.adaptiveSize},
width = ${toString cfg.treeWidth},
side = ${"'" + cfg.treeSide + "'"},
},
renderer = {
highlight_git = ${boolToString cfg.highlightGit},
indent_markers = {
enable = ${boolToString cfg.indentMarkers},
},
@ -219,9 +180,6 @@ in {
${builtins.concatStringsSep "\n" (builtins.map (s: "\"" + s + "\",") cfg.hideFiles)}
},
},
filesystem_watchers = {
enable = ${boolToString cfg.fileSystemWatchers},
}
})
'';
};