A plugin of NERDTree showing git status flags. Works with the LATEST version of NERDTree.
The original project git-nerdtree will not be maintained any longer.
For Vundle
Plugin 'scrooloose/nerdtree'
Plugin 'Xuyuanp/nerdtree-git-plugin'
For NeoBundle
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'Xuyuanp/nerdtree-git-plugin'
- scrooloose: Open API for me.
- git_nerd: Where my idea comes from.
Use this variable to change symbols.
Note that ~
is only allowed for modified and dirty
let g:NERDTreeIndicatorMap = {
\ "Modified" : "✹",
\ "Staged" : "✚",
\ "Untracked" : "✭",
\ "Renamed" : "➜",
\ "Unmerged" : "═",
\ "Deleted" : "✖",
\ "Dirty" : "✗",
\ "Clean" : "✔︎",
\ "Unknown" : "?"
\ }