kickstart.nvim/lua/custom/plugins/nvim-tree.lua

13 lines
245 B
Lua
Raw Normal View History

2023-11-25 15:54:02 -05:00
return {
{
'nvim-tree/nvim-tree.lua',
2023-11-27 16:53:42 -05:00
dependencies = { 'nvim-tree/nvim-web-devicons' },
2023-11-25 15:54:02 -05:00
opts = {
sort_by = "case_sensitive",
view = { width = 30, },
renderer = { group_empty = true, },
filters = { dotfiles = true, },
}
}
}