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

14 lines
266 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,
diagnostics = {
enable = true,
},
view = {
auto_resize = true,
},
2022-01-05 19:45:05 +01:00
git = {
ignore = false,
},
2021-11-05 17:44:11 +01:00
}