From 265dbe1d3c5d1a257fbe6849b9cb6516010bd868 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 14 Mar 2024 01:15:16 -0400 Subject: [PATCH] Add some scss-specific colors for treesitter even though highlighting is currently broken --- vim/colors/darkcloud.vim | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vim/colors/darkcloud.vim b/vim/colors/darkcloud.vim index 1f0d23a..64f86d1 100644 --- a/vim/colors/darkcloud.vim +++ b/vim/colors/darkcloud.vim @@ -366,6 +366,17 @@ endfun hi! link @conditional Conditional hi! link @method @function hi! link @note @comment + + "scss + call s:C("@keyword.directive.scss",g:cYellow,"","") + call s:C("@tag.scss",g:cYellow,"","") + call s:C("@property.scss",g:cRed,"","bold") + call s:C("@variable.scss",g:cBlue,"","bold") + call s:C("@type.scss",g:cRed,"","bold") + call s:C("@punctuation.delimiter.scss",g:cGray2,"","") + call s:C("@number.scss",g:cWhite,"","bold") + hi! link @number.float.scss @number.scss + hi! link @variable.parameter.scss @variable.scss endif "}}}