Files
dotfiles/nvim/after/plugin/nvim-tree.lua
2022-08-10 11:03:55 +02:00

10 lines
206 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- nvim-tree.lua https://github.com/kyazdani42/nvim-tree.lua
local status_ok, nvim_tree = pcall(require, "nvim-tree")
if not status_ok then
return
end
nvim_tree.setup({
sync_root_with_cwd = true,
})