LunarVim/vimscript/nv-nvimtree/init.vim

21 lines
445 B
VimL
Raw Normal View History

2021-03-17 08:34:15 +01:00
" TODO this really should be in the lua section
let g:nvim_tree_icons = {
\ 'default': '',
\ 'symlink': '',
\ 'git': {
2021-03-18 19:01:23 +01:00
\ 'unstaged': "",
2021-03-17 08:34:15 +01:00
\ 'staged': "✓",
\ 'unmerged': "",
\ 'renamed': "➜",
2021-03-18 19:01:23 +01:00
\ 'untracked': "✗"
2021-03-17 08:34:15 +01:00
\ },
\ 'folder': {
\ 'default': "",
\ 'open': "",
\ 'empty': "",
\ 'empty_open': "",
\ 'symlink': "",
\ }
\ }