dotfiles/cli/vim/neovim/lua/plugins/tree.lua

14 lines
236 B
Lua
Raw Normal View History

local nvim_tree_ok, nvim_tree = pcall(require, "nvim-tree")
if not nvim_tree_ok then
return
end
2022-07-08 07:14:39 +00:00
nvim_tree.setup{
actions = {
change_dir = {
global = true
}
}
}