added some more configs, got a file tree working

This commit is contained in:
topper3418 2024-06-26 07:11:44 -05:00
parent 91d82c8eca
commit d72b58ed6b
2 changed files with 30 additions and 2 deletions

View file

@ -2,4 +2,22 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
{
'nvim-tree/nvim-tree.lua',
opts = {
sort = {
sorter = 'case_sensitive',
},
view = {
width = 30,
},
renderer = {
group_empty = true,
},
filters = {
dotfiles = true,
},
},
},
}