diff options
author | Chris <[email protected]> | 2021-07-13 11:43:04 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-07-13 11:43:04 -0400 |
commit | 127359e431c1bf9b5d1efe5ed5a31422ee0765c7 (patch) | |
tree | 57eef324fa0abfe0ac4c9e652bf0cf3b22e0fe75 /lua/core/nvimtree.lua | |
parent | 6f0c8c20ff82ed72008647d59bfe2638c2cb1fe2 (diff) |
always close tree, there is a bug with nvimtree if you don't autoclose where the buffer you open will inherit the settings of the tree buffer
Diffstat (limited to 'lua/core/nvimtree.lua')
-rw-r--r-- | lua/core/nvimtree.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/nvimtree.lua b/lua/core/nvimtree.lua index 553bdb41..cb3eacea 100644 --- a/lua/core/nvimtree.lua +++ b/lua/core/nvimtree.lua @@ -17,7 +17,7 @@ M.setup = function() g.nvim_tree_width = 30 g.nvim_tree_ignore = { ".git", "node_modules", ".cache" } g.nvim_tree_auto_open = 1 - g.nvim_tree_auto_close = O.auto_close_tree + g.nvim_tree_auto_close = 1 g.nvim_tree_quit_on_open = 0 g.nvim_tree_follow = 1 g.nvim_tree_indent_markers = 1 |