mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 04:22:41 +01:00
11 lines
246 B
Lua
11 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,
|
|
},
|
|
}
|