dotfiles/nvim/lua/nvim_tree_config.lua

27 lines
489 B
Lua
Raw Normal View History

local hastree, tree = pcall(require, "nvim-tree")
if not hastree then
return
end
2023-05-22 13:32:07 +02:00
tree.setup({
sort_by = "case_sensitive",
sync_root_with_cwd = true,
update_focused_file = {
update_root = true,
},
view = {
adaptive_size = true,
mappings = {
list = {
{key = "cd", action = "cd"}
}
},
},
renderer = {
group_empty = true,
},
filters = {
dotfiles = true,
},
})