dotfiles/.config/nvim/lua/pluginconf/nvimtree.lua

12 lines
246 B
Lua
Raw Normal View History

2021-11-05 17:44:11 +01:00
require("nvim-tree").setup {
-- don't open tree when using firenvim
open_on_setup = not vim.g.started_by_firenvim,
auto_close = true,
diagnostics = {
enable = true,
},
view = {
auto_resize = true,
},
}