mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 14:45:58 +01:00
fix: renamed option as setupOpts
This commit is contained in:
parent
99fd8c9eb6
commit
bea3b43733
1 changed files with 6 additions and 6 deletions
|
@ -34,12 +34,6 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
disableNetrw = mkOption {
|
||||
default = false;
|
||||
description = "Disables netrw and replaces it with tree";
|
||||
type = bool;
|
||||
};
|
||||
|
||||
setupOpts = mkPluginSetupOption "Nvim Tree" {
|
||||
hijack_netrw = mkOption {
|
||||
default = true;
|
||||
|
@ -47,6 +41,12 @@ in {
|
|||
type = bool;
|
||||
};
|
||||
|
||||
disable_netrw = mkOption {
|
||||
default = false;
|
||||
description = "Disables netrw and replaces it with tree";
|
||||
type = bool;
|
||||
};
|
||||
|
||||
auto_reload_on_write = mkOption {
|
||||
default = true;
|
||||
description = "Auto reload tree on write";
|
||||
|
|
Loading…
Reference in a new issue