Update after/plugin/dracula.vim

Co-authored-by: D. Ben Knoble <ben.knoble+github@gmail.com>
This commit is contained in:
Noah Friedman 2023-05-25 17:01:18 -04:00 committed by GitHub
parent aedcab9da1
commit 22cb6183db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,17 +57,17 @@ if has('nvim-0.5') && luaeval("pcall(require, 'gitsigns')")
hi! link GitSignsChangeLn DiffChange hi! link GitSignsChangeLn DiffChange
hi! link GitSignsChangeNr DiffChange hi! link GitSignsChangeNr DiffChange
" Manually set `GitSignsDelete` when in a terminal where `g:dracula_colorterm` " Manually set `GitSignsDelete` when in a terminal where `g:dracula_colorterm`
" is false to remain consistent with the other GitSigns highlights. " is false to remain consistent with the other GitSigns highlights.
if g:dracula_colorterm || has('gui_running') if g:dracula_colorterm || has('gui_running')
hi! link GitSignsDelete DiffDelete hi! link GitSignsDelete DiffDelete
else else
hi! link GitSignsDelete DraculaRed hi! link GitSignsDelete DraculaRed
endif endif
" GitSignsDeleteLn and GitSignsDeleteNr should always match " GitSignsDeleteLn and GitSignsDeleteNr should always match
" whatever GitSignsDelete is set to. " whatever GitSignsDelete is set to.
hi! link GitSignsDeleteLn GitSignsDelete hi! link GitSignsDeleteLn GitSignsDelete
hi! link GitSignsDeleteNr GitSignsDelete hi! link GitSignsDeleteNr GitSignsDelete
endif endif
" }}} " }}}
" Tree-sitter: {{{ " Tree-sitter: {{{