nvim-config/lua/custom/plugins/nvim-tree.lua
amninder-narota ad5d34530f nvim-config
2025-11-29 19:55:52 -05:00

20 lines
354 B
Lua

return {
'nvim-tree/nvim-tree.lua',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
config = function()
require('nvim-tree').setup {
sort_by = 'case_sensitive',
view = {
width = 30,
},
renderer = {
group_empty = true,
},
filters = {
dotfiles = false,
},
}
end,
}