diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-27 19:58:38 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-27 19:58:38 +0200 |
commit | b57fbd2855454131ab2c900e7514868c5f421aff (patch) | |
tree | 6607f9e3d8f32db283a73d9bc64904e9b393ae44 /lua/config/nvim-tree.lua | |
parent | 67af0170b31d1afb9a9a4a07278c92f87b495888 (diff) |
fix(nvim-tree): disable netrw
Diffstat (limited to 'lua/config/nvim-tree.lua')
-rw-r--r-- | lua/config/nvim-tree.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/config/nvim-tree.lua b/lua/config/nvim-tree.lua index 68ee87b..a1facc7 100644 --- a/lua/config/nvim-tree.lua +++ b/lua/config/nvim-tree.lua @@ -34,8 +34,8 @@ end local tree_cb = nvim_tree_config.nvim_tree_callback nvim_tree.setup { - disable_netrw = true, - hijack_netrw = true, + disable_netrw = false, + hijack_netrw = false, open_on_setup = false, ignore_ft_on_setup = { "startify", |