mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-15 21:43:45 +01:00
12 lines
246 B
Lua
12 lines
246 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,
|
|
diagnostics = {
|
|
enable = true,
|
|
},
|
|
view = {
|
|
auto_resize = true,
|
|
},
|
|
}
|
|
|