From 0bf17b30c93dc1358b8fc01e126ad1d12a272adb Mon Sep 17 00:00:00 2001 From: Noah Friedman Date: Tue, 13 Jun 2023 16:06:22 -0400 Subject: [PATCH] Update GitSignsDelete highlight group to always link to DraculaRed (#307) --- after/plugin/dracula.vim | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/after/plugin/dracula.vim b/after/plugin/dracula.vim index 3be2a02..7767122 100644 --- a/after/plugin/dracula.vim +++ b/after/plugin/dracula.vim @@ -57,17 +57,9 @@ if has('nvim-0.5') && luaeval("pcall(require, 'gitsigns')") hi! link GitSignsChangeLn DiffChange hi! link GitSignsChangeNr DiffChange - " Manually set `GitSignsDelete` when in a terminal where `g:dracula_colorterm` - " is false to remain consistent with the other GitSigns highlights. - if g:dracula_colorterm || has('gui_running') - hi! link GitSignsDelete DiffDelete - else - hi! link GitSignsDelete DraculaRed - endif - " GitSignsDeleteLn and GitSignsDeleteNr should always match - " whatever GitSignsDelete is set to. - hi! link GitSignsDeleteLn GitSignsDelete - hi! link GitSignsDeleteNr GitSignsDelete + hi! link GitSignsDelete DraculaRed + hi! link GitSignsDeleteLn DraculaRed + hi! link GitSignsDeleteNr DraculaRed endif " }}} " Tree-sitter: {{{