summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Dawkins <[email protected]>2021-10-08 01:00:05 -0600
committerGitHub <[email protected]>2021-10-08 09:00:05 +0200
commita814ea2e14792f542092f7428e7c5446b0908b03 (patch)
treebc0307b9a9b1b440d86e938d6fa7e0b5b81c0cef
parentf4899e316516fc6fc544b148cb7e9a04fbda130e (diff)
fix: correct variable names in NvimTree setup table (#1710)
Co-authored-by: chris <chris@dev>
-rw-r--r--lua/core/nvimtree.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/core/nvimtree.lua b/lua/core/nvimtree.lua
index 8d3b1b6a..55cc6175 100644
--- a/lua/core/nvimtree.lua
+++ b/lua/core/nvimtree.lua
@@ -6,9 +6,9 @@ function M.config()
active = true,
on_config_done = nil,
setup = {
- auto_open = 0,
+ open_on_setup = 0,
auto_close = 1,
- tab_open = 0,
+ open_on_tab = 0,
update_focused_file = {
enable = 1,
},