Small misc tweaks/fixes (#113)
* improve MatchParen highlighting * improve ColorColumn and CursorColumn highlighting
This commit is contained in:
parent
0f4ebc51a7
commit
f24e259073
2 changed files with 9 additions and 10 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
- D. Ben Knoble (https://github.com/benknoble)
|
||||
|
||||
Git repository:
|
||||
https://github.com/dracula/vim
|
||||
|
|
Loading…
Reference in a new issue