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

13 lines
246 B
Lua
Raw Normal View History

2021-10-11 00:48:23 +02:00
require 'nvim-tree'.setup {
2021-09-26 23:11:50 +02:00
-- don't open tree when using firenvim
open_on_setup = not vim.g.started_by_firenvim,
auto_close = true,
2021-10-11 00:48:23 +02:00
diagnostics = {
enable = true,
},
2021-09-26 23:11:50 +02:00
view = {
auto_resize = true,
2021-10-11 00:48:23 +02:00
},
2021-09-26 23:11:50 +02:00
}