mirror of
https://github.com/joshdick/onedark.vim.git
synced 2025-11-14 05:53:49 -05:00
feat(plugin): Add support for lewis6991/gitsigns.nvim (#274)
Resolves #272.
This commit is contained in:
@@ -541,9 +541,9 @@ call s:h("xmlTagName", { "fg": s:red })
|
|||||||
" Plugin Highlighting {{{
|
" Plugin Highlighting {{{
|
||||||
|
|
||||||
" airblade/vim-gitgutter
|
" airblade/vim-gitgutter
|
||||||
hi link GitGutterAdd SignifySignAdd
|
call s:h("GitGutterAdd", { "fg": s:green })
|
||||||
hi link GitGutterChange SignifySignChange
|
call s:h("GitGutterChange", { "fg": s:yellow })
|
||||||
hi link GitGutterDelete SignifySignDelete
|
call s:h("GitGutterDelete", { "fg": s:red })
|
||||||
|
|
||||||
" dense-analysis/ale
|
" dense-analysis/ale
|
||||||
call s:h("ALEError", { "fg": s:red, "gui": "underline", "cterm": "underline" })
|
call s:h("ALEError", { "fg": s:red, "gui": "underline", "cterm": "underline" })
|
||||||
@@ -556,10 +556,15 @@ call s:h("EasyMotionTarget2First", { "fg": s:yellow, "gui": "bold", "cterm": "bo
|
|||||||
call s:h("EasyMotionTarget2Second", { "fg": s:dark_yellow, "gui": "bold", "cterm": "bold" })
|
call s:h("EasyMotionTarget2Second", { "fg": s:dark_yellow, "gui": "bold", "cterm": "bold" })
|
||||||
call s:h("EasyMotionShade", { "fg": s:comment_grey })
|
call s:h("EasyMotionShade", { "fg": s:comment_grey })
|
||||||
|
|
||||||
|
" lewis6991/gitsigns.nvim
|
||||||
|
hi link GitSignsAdd GitGutterAdd
|
||||||
|
hi link GitSignsChange GitGutterChange
|
||||||
|
hi link GitSignsDelete GitGutterDelete
|
||||||
|
|
||||||
" mhinz/vim-signify
|
" mhinz/vim-signify
|
||||||
call s:h("SignifySignAdd", { "fg": s:green })
|
hi link SignifySignAdd GitGutterAdd
|
||||||
call s:h("SignifySignChange", { "fg": s:yellow })
|
hi link SignifySignChange GitGutterChange
|
||||||
call s:h("SignifySignDelete", { "fg": s:red })
|
hi link SignifySignDelete GitGutterDelete
|
||||||
|
|
||||||
" neoclide/coc.nvim
|
" neoclide/coc.nvim
|
||||||
call s:h("CocErrorSign", { "fg": s:red })
|
call s:h("CocErrorSign", { "fg": s:red })
|
||||||
|
|||||||
Reference in New Issue
Block a user