From f6dd7c17f71d2b6a1fad1e84e6cb28861af0e978 Mon Sep 17 00:00:00 2001 From: Derek Sifford Date: Sun, 6 Oct 2019 14:54:09 -0400 Subject: [PATCH] fix: adjust conceal character highlighting (#151) see: https://github.com/dracula/vim/issues/144#issuecomment-538037764 closes #144 --- colors/dracula.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/dracula.vim b/colors/dracula.vim index f9db37a..f62a18a 100644 --- a/colors/dracula.vim +++ b/colors/dracula.vim @@ -245,7 +245,7 @@ hi! link WarningMsg DraculaOrangeInverse " Required as some plugins will overwrite call s:h('MatchParen', s:green, s:none, [s:attrs.underline]) -call s:h('Conceal', s:comment, s:bglight) +call s:h('Conceal', s:cyan, s:none) " Neovim uses SpecialKey for escape characters only. Vim uses it for that, plus whitespace. if has('nvim')