dotfiles/.config/nvim/lua/pluginconf/nvimtree.lua
2022-01-22 16:38:51 +01:00

13 lines
266 B
Lua

require("nvim-tree").setup {
-- don't open tree when using firenvim
open_on_setup = not vim.g.started_by_firenvim,
diagnostics = {
enable = true,
},
view = {
auto_resize = true,
},
git = {
ignore = false,
},
}