mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-13 16:32:30 -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")
|
call s:C("LineNr",g:cGray4,"","bold")
|
||||||
|
|
||||||
"selected text
|
"selected text
|
||||||
call s:C("Visual","",g:cDarkBg,"standout")
|
call s:C("Visual","","","standout")
|
||||||
|
|
||||||
"vertical split divider
|
"vertical split divider
|
||||||
call s:C("VertSplit",g:cGray1,"","")
|
call s:C("VertSplit",g:cGray1,"","")
|
||||||
|
|
||||||
"matched parenthesis
|
"matched parenthesis
|
||||||
call s:C("MatchParen",g:cWhite,g:cLightBg,"bold")
|
call s:C("MatchParen","","","underline,bold")
|
||||||
|
|
||||||
"whitespace
|
"whitespace
|
||||||
call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"")
|
call s:C("ExtraWhiteSpace",g:cDarkRed,g:cDarkBg,"")
|
||||||
|
@ -166,6 +166,11 @@ endfun
|
||||||
"coffeeScript
|
"coffeeScript
|
||||||
hi! link coffeeRegExp javaScriptRegexpString
|
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
|
"dosini
|
||||||
hi! link dosiniLabel Function
|
hi! link dosiniLabel Function
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue