feat: neo-vim

This commit is contained in:
ralvescosta 2025-03-17 08:02:04 -03:00
parent 0882efd1a3
commit 9de0a7116e
1 changed files with 15 additions and 0 deletions

View File

@ -23,6 +23,21 @@ return {
filtered_items = { filtered_items = {
hide_dotfiles = false, hide_dotfiles = false,
}, },
renderers = {
directory = {
{ 'indent' },
{ 'icon' },
{
'name',
use_git_status_colors = true,
zindex = 10,
highlight = 'NeoTreeDirectoryName',
callback = function(item)
return vim.fn.fnamemodify(item.path, ':t') -- Shows only the folder name
end,
},
},
},
}, },
}, },
} }