From abd1ba7992e1439111679cae8e55bbc7af2d9e75 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Mon, 11 Mar 2024 18:10:57 -0400 Subject: [PATCH] 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 --- vim/colors/darkcloud.vim | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/vim/colors/darkcloud.vim b/vim/colors/darkcloud.vim index c93ce0d..93f54e8 100644 --- a/vim/colors/darkcloud.vim +++ b/vim/colors/darkcloud.vim @@ -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