From f24e259073994b4f76d125332954d26748fcc581 Mon Sep 17 00:00:00 2001 From: Derek Sifford Date: Sun, 25 Nov 2018 10:22:07 -0500 Subject: [PATCH] Small misc tweaks/fixes (#113) * improve MatchParen highlighting * improve ColorColumn and CursorColumn highlighting --- colors/dracula.vim | 6 +++--- doc/dracula.txt | 13 ++++++------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/colors/dracula.vim b/colors/dracula.vim index 1d81c41..a6964ac 100644 --- a/colors/dracula.vim +++ b/colors/dracula.vim @@ -239,8 +239,8 @@ call s:h('StatusLineNC', s:none, s:bglight) call s:h('WildMenu', s:bg, s:purple, [s:attrs.bold]) call s:h('CursorLine', s:none, s:subtle) -hi! link ColorColumn DraculaSelection -hi! link CursorColumn DraculaSelection +hi! link ColorColumn DraculaBgDark +hi! link CursorColumn DraculaBgDark hi! link CursorLineNr DraculaYellow hi! link DiffAdd DraculaGreen hi! link DiffAdded DiffAdd @@ -276,7 +276,7 @@ hi! link WarningMsg DraculaOrangeInverse " Syntax: {{{ " Required as some plugins will overwrite -call s:h('MatchParen', s:fg, s:pink, [s:attrs.underline]) +call s:h('MatchParen', s:green, s:none, [s:attrs.underline]) call s:h('Conceal', s:comment, s:bglight) " Neovim uses SpecialKey for escape characters only. Vim uses it for that, plus whitespace. diff --git a/doc/dracula.txt b/doc/dracula.txt index 7194994..ee42f81 100644 --- a/doc/dracula.txt +++ b/doc/dracula.txt @@ -56,19 +56,19 @@ In the following section, `1` signifies `on` and `0` signifies `off`. * *g:dracula_bold* Include bold attributes in highlighting > let g:dracula_bold = 1 -< + * *g:dracula_italic* Include italic attributes in highlighting > let g:dracula_italic = 1 -< + * *g:dracula_underline* Include underline attributes in highlighting > let g:dracula_underline = 1 -< + * *g:dracula_undercurl* Include undercurl attributes in highlighting (only if underline enabled) > let g:dracula_undercurl = 1 -< + * *g:dracula_inverse* Include inverse attributes in highlighting > let g:dracula_inverse = 1 @@ -131,9 +131,8 @@ Further information available at https://draculatheme.com/vim Maintained by: -- Trevor Heins ( https://github.com/heinst ) -- Blake Williams ( https://github.com/BlakeWilliams ) -- Derek S. ( https://github.com/dsifford ) +- Derek S. (https://github.com/dsifford) +- D. Ben Knoble (https://github.com/benknoble) Git repository: https://github.com/dracula/vim