diff --git a/README.md b/README.md index 917abdb9..b0d6e3eb 100644 --- a/README.md +++ b/README.md @@ -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 ------------- diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 25e3d7f0..e2df2792 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -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 -----------------------------------------------------------