Support NERDTree, dirvish (closes #183, closes #124)

This commit is contained in:
Pavel Pertsev
2017-08-12 16:19:01 +03:00
parent ac607b80a7
commit ee2d07f5e2
2 changed files with 42 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ Features
* Lots of style-customization options (contrast, color invertion, italics usage etc.)
* Extended filetype highlighting: Html, Xml, Vim (and ES6 with [yajs.vim](https://github.com/othree/yajs.vim)), Clojure, C, Python, JavaScript, CoffeeScript, Ruby, Objective-C, Go, Lua, MoonScript, Java, Markdown, Haskell
* Supported plugins: [EasyMotion][], [vim-sneak][], [Indent Guides][], [indentLine][], [Rainbow Parentheses][], [Airline][], [Lightline][], [GitGutter][], [Signify][], [ShowMarks][], [Signature][], [Syntastic][], [CtrlP][], [Startify][]
* Supported plugins: [EasyMotion][], [vim-sneak][], [Indent Guides][], [indentLine][], [Rainbow Parentheses][], [Airline][], [Lightline][], [GitGutter][], [Signify][], [ShowMarks][], [Signature][], [Syntastic][], [Ale][], [CtrlP][], [Startify][], [NERDTree][], [Dirvish][]
[EasyMotion]: https://github.com/Lokaltog/vim-easymotion
[vim-sneak]: https://github.com/justinmk/vim-sneak
@@ -80,8 +80,11 @@ Features
[ShowMarks]: http://www.vim.org/scripts/script.php?script_id=152
[Signature]: https://github.com/kshenoy/vim-signature
[Syntastic]: https://github.com/scrooloose/syntastic
[Ale]: https://github.com/w0rp/ale
[CtrlP]: https://github.com/kien/ctrlp.vim
[Startify]: https://github.com/mhinz/vim-startify
[NERDTree]: https://github.com/scrooloose/nerdtree
[Dirvish]: https://github.com/justinmk/vim-dirvish
Contributions
-------------

View File

@@ -843,6 +843,44 @@ hi! link ALEErrorSign GruvboxRedSign
hi! link ALEWarningSign GruvboxYellowSign
hi! link ALEInfoSign GruvboxBlueSign
" }}}
" Dirvish: {{{
call s:HL('DirvishPathTail', s:aqua)
" }}}
" Netrw: {{{
call s:HL('netrwDir', s:aqua)
call s:HL('netrwClassify', s:aqua)
call s:HL('netrwLink', s:gray)
call s:HL('netrwSymLink', s:fg1)
call s:HL('netrwExe', s:yellow)
call s:HL('netrwComment', s:gray)
call s:HL('netrwList', s:blue)
call s:HL('netrwHelpCmd', s:aqua)
call s:HL('netrwCmdSep', s:fg3)
call s:HL('netrwVersion', s:green)
" }}}
" NERDTree: {{{
call s:HL('NERDTreeDir', s:aqua)
call s:HL('NERDTreeDirSlash', s:aqua)
call s:HL('NERDTreeOpenable', s:orange)
call s:HL('NERDTreeClosable', s:orange)
call s:HL('NERDTreeFile', s:fg0)
call s:HL('NERDTreeExecFile', s:yellow)
call s:HL('NERDTreeUp', s:gray)
call s:HL('NERDTreeCWD', s:green)
call s:HL('NERDTreeHelp', s:fg1)
call s:HL('NERDTreeToggleOn', s:green)
call s:HL('NERDTreeToggleOff', s:red)
" }}}
" Filetype specific -----------------------------------------------------------