mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Fix the visual highlighted search text color so it's visible, underline matched parenthesis instead of changing the color, and improve the css/sass highlight colors
This commit is contained in:
parent
facbd15523
commit
abd1ba7992
1 changed files with 7 additions and 2 deletions
|
@ -76,13 +76,13 @@ endfun
|
|||
call s:C("LineNr",g:cGray4,"","bold")
|
||||
|
||||
"selected text
|
||||
call s:C("Visual","",g:cDarkBg,"standout")
|
||||
call s:C("Visual","","","standout")
|
||||
|
||||
"vertical split divider
|
||||
call s:C("VertSplit",g:cGray1,"","")
|
||||
|
||||
"matched parenthesis
|
||||
call s:C("MatchParen",g:cWhite,g:cLightBg,"bold")
|
||||
call s:C("MatchParen","","","underline,bold")
|
||||
|
||||
"whitespace
|
||||
call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"")
|
||||
|
@ -166,6 +166,11 @@ endfun
|
|||
"coffeeScript
|
||||
hi! link coffeeRegExp javaScriptRegexpString
|
||||
|
||||
"css/sass
|
||||
call s:C("cssBraces",g:cBlue,"","")
|
||||
call s:C("sassDefinition",g:cRed,"","bold")
|
||||
call s:C("sassClassChar",g:cYellow,"","bold")
|
||||
|
||||
"dosini
|
||||
hi! link dosiniLabel Function
|
||||
|
||||
|
|
Loading…
Reference in a new issue