mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
10 lines
222 B
Lua
10 lines
222 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,
|
|
lsp_diagnostics = true,
|
|
view = {
|
|
auto_resize = true,
|
|
}
|
|
}
|
|
|