Skip to content

Commit

Permalink
Support NERDTree, dirvish (closes morhetz#183, closes morhetz#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
morhetz committed Aug 12, 2017
1 parent ac607b8 commit ee2d07f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
-------------
Expand Down
38 changes: 38 additions & 0 deletions colors/gruvbox.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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 -----------------------------------------------------------
Expand Down

0 comments on commit ee2d07f

Please sign in to comment.