| 1234567891011121314151617181920 | " TODO this really should be in the lua sectionlet g:nvim_tree_icons = {    \ 'default': '',    \ 'symlink': '',    \ 'git': {    \   'unstaged': "",    \   'staged': "✓",    \   'unmerged': "",    \   'renamed': "➜",    \   'untracked': "✗"    \   },    \ 'folder': {    \   'default': "",    \   'open': "",    \   'empty': "",    \   'empty_open': "",    \   'symlink': "",    \   }    \ }
 |