dotfiles/.config/nvim/lua/pluginconf/nvimtree.lua
2021-09-26 23:11:50 +02:00

10 lines
222 B
Lua

require'nvim-tree'.setup {
-- don't open tree when using firenvim
open_on_setup = not vim.g.started_by_firenvim,
auto_close = true,
lsp_diagnostics = true,
view = {
auto_resize = true,
}
}