Dot_Files/.config/nvim/lua/plugins/configs/neotree.lua

14 lines
258 B
Lua
Raw Normal View History

2022-05-11 21:00:57 -05:00
local neotree = require('neo-tree')
vim.g.neo_tree_remove_legacy_commands = 1
2022-05-06 14:18:14 -05:00
neotree.setup({
2022-05-11 21:00:57 -05:00
filesystem = {
use_libuv_file_watcher = true,
2022-05-19 08:58:39 -05:00
window = {
mappings = {
["/"] = ""
}
}
2022-05-11 21:00:57 -05:00
},
2022-05-06 14:18:14 -05:00
})