Skip to content

Commit

Permalink
Add fzf colors
Browse files Browse the repository at this point in the history
Closes morhetz#15
  • Loading branch information
rbong committed Jun 1, 2019
1 parent a976522 commit b9b6b06
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Features

* Lots of style-customization options (contrast, color invertion, italics usage etc.)
* Extended filetype highlighting: Html, Xml, Vim, Clojure, C, Python, JavaScript, TypeScript, PureScript, CoffeeScript, Ruby, Objective-C, Go, Lua, MoonScript, Java, Markdown, Haskell, Elixir, C#
* Supported plugins: [EasyMotion][], [vim-sneak][], [Indent Guides][], [indentLine][], [Rainbow Parentheses][], [Airline][], [Lightline][], [GitGutter][], [Signify][], [ShowMarks][], [Signature][], [Syntastic][], [Ale][], [CtrlP][], [Startify][], [NERDTree][], [Dirvish][]
* Supported plugins: [EasyMotion][], [vim-sneak][], [Indent Guides][], [indentLine][], [Rainbow Parentheses][], [Airline][], [Lightline][], [GitGutter][], [Signify][], [ShowMarks][], [Signature][], [Syntastic][], [Ale][], [CtrlP][], [fzf][], [Startify][], [NERDTree][], [Dirvish][]

[EasyMotion]: https://github.com/Lokaltog/vim-easymotion
[vim-sneak]: https://github.com/justinmk/vim-sneak
Expand All @@ -87,6 +87,7 @@ Features
[Syntastic]: https://github.com/scrooloose/syntastic
[Ale]: https://github.com/w0rp/ale
[CtrlP]: https://github.com/kien/ctrlp.vim
[fzf]: https://github.com/junegunn/fzf.vim
[Startify]: https://github.com/mhinz/vim-startify
[NERDTree]: https://github.com/scrooloose/nerdtree
[Dirvish]: https://github.com/justinmk/vim-dirvish
Expand Down
18 changes: 18 additions & 0 deletions colors/gruvbox.vim
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,24 @@ call s:HL('CtrlPMode1', s:blue, s:bg2, s:bold)
call s:HL('CtrlPMode2', s:bg0, s:blue, s:bold)
call s:HL('CtrlPStats', s:fg4, s:bg2, s:bold)

" }}}
" FZF: {{{

let g:fzf_colors = {
\ 'fg': ['fg', 'GruvboxFg1'],
\ 'bg': ['fg', 'GruvboxBg0'],
\ 'hl': ['fg', 'GruvboxYellow'],
\ 'fg+': ['fg', 'GruvboxFg1'],
\ 'bg+': ['fg', 'GruvboxBg1'],
\ 'hl+': ['fg', 'GruvboxYellow'],
\ 'info': ['fg', 'GruvboxBlue'],
\ 'prompt': ['fg', 'GruvboxFg4'],
\ 'pointer': ['fg', 'GruvboxBlue'],
\ 'marker': ['fg', 'GruvboxOrange'],
\ 'spinner': ['fg', 'GruvboxYellow'],
\ 'header': ['fg', 'GruvboxBg3']
\ }

" }}}
" Startify: {{{

Expand Down

0 comments on commit b9b6b06

Please sign in to comment.