Skip to content

Commit

Permalink
Merge pull request #159 from cutiful/master
Browse files Browse the repository at this point in the history
Add support for vim-signify
  • Loading branch information
NLKNguyen authored Nov 9, 2020
2 parents c657f5c + 30fbe88 commit 0428fc2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Currently designed for these languages:

Other file types can still display well as long as your Vim is set up to recognize the language syntax even though that may not be the optimal experience. So, if the language you are working on isn't listed here, feel free to make a design request.

Plugin support: vimdiff, netrw, [NERDTree](https://github.com/scrooloose/nerdtree), [tagbar](https://github.com/majutsushi/tagbar), [tabline](https://github.com/mkitt/tabline.vim), [vim-airline](https://github.com/bling/vim-airline), [vim-indent-guides](https://github.com/nathanaelkane/vim-indent-guides), [vim-startify](https://github.com/mhinz/vim-startify), [Agit](https://github.com/cohama/agit.vim)
Plugin support: vimdiff, netrw, [NERDTree](https://github.com/scrooloose/nerdtree), [tagbar](https://github.com/majutsushi/tagbar), [tabline](https://github.com/mkitt/tabline.vim), [vim-airline](https://github.com/bling/vim-airline), [vim-indent-guides](https://github.com/nathanaelkane/vim-indent-guides), [vim-startify](https://github.com/mhinz/vim-startify), [Agit](https://github.com/cohama/agit.vim), [vim-signify](https://github.com/mhinz/vim-signify)

(see below for syntax-highlighting plugins target)

Expand Down
8 changes: 8 additions & 0 deletions colors/PaperColor.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2178,6 +2178,14 @@ fun! s:apply_syntax_highlightings()
exec 'hi StartifyBracket' . s:fg_aqua
exec 'hi StartifySpecial' . s:fg_aqua

" Plugin: Signify
exec 'hi SignifyLineChange' . s:fg_diffchange_fg
exec 'hi SignifySignChange' . s:fg_diffchange_fg
exec 'hi SignifyLineAdd' . s:fg_diffadd_fg
exec 'hi SignifySignAdd' . s:fg_diffadd_fg
exec 'hi SignifyLineDelete' . s:fg_diffdelete_fg
exec 'hi SignifySignDelete' . s:fg_diffdelete_fg

" Git commit message
exec 'hi gitcommitSummary' . s:fg_blue
exec 'hi gitcommitHeader' . s:fg_green . s:ft_bold
Expand Down

0 comments on commit 0428fc2

Please sign in to comment.