prevent nvim-tree from resizing whenever a new file is opened

so fucking annoying. who made that default behaviour!?!?!?!
This commit is contained in:
Gered 2024-11-03 16:17:08 -05:00
parent 3ba6f1951f
commit af81505eaf

View file

@ -8,6 +8,11 @@ return {
}, },
config = function() config = function()
require('nvim-tree').setup { require('nvim-tree').setup {
actions = {
open_file = {
resize_window = false,
},
},
renderer = { renderer = {
highlight_git = 'all', highlight_git = 'all',
highlight_diagnostics = 'icon', highlight_diagnostics = 'icon',