mirror of
https://github.com/prurigro/darkcloud-vimconfig.git
synced 2024-11-21 22:42:31 -05:00
Improve the treesitter colors
This commit is contained in:
parent
c625fe2499
commit
d2db721dee
1 changed files with 3 additions and 3 deletions
|
@ -290,9 +290,10 @@ endfun
|
||||||
call s:C("@error",g:cRed,"","bold")
|
call s:C("@error",g:cRed,"","bold")
|
||||||
call s:C("@exception",g:cRed,"","")
|
call s:C("@exception",g:cRed,"","")
|
||||||
call s:C("@float",g:cYellow,"","bold")
|
call s:C("@float",g:cYellow,"","bold")
|
||||||
call s:C("@function",g:cBlue,"","bold")
|
call s:C("@function",g:cLightText,"","")
|
||||||
call s:C("@function.builtin",g:cBlue,"","bold")
|
call s:C("@function.builtin",g:cBlue,"","bold")
|
||||||
call s:C("@function.macro",g:cBlue,"","italic")
|
call s:C("@function.macro",g:cBlue,"","italic")
|
||||||
|
call s:C("@field",g:cBlue,"","italic")
|
||||||
call s:C("@include",g:cBlue,"","bold")
|
call s:C("@include",g:cBlue,"","bold")
|
||||||
call s:C("@keyword",g:cRed,"","bold")
|
call s:C("@keyword",g:cRed,"","bold")
|
||||||
call s:C("@keyword.function",g:cRed,"","bold")
|
call s:C("@keyword.function",g:cRed,"","bold")
|
||||||
|
@ -334,13 +335,12 @@ endfun
|
||||||
call s:C("@text.uri","","","bold")
|
call s:C("@text.uri","","","bold")
|
||||||
call s:C("@type",g:cYellow,"","bold")
|
call s:C("@type",g:cYellow,"","bold")
|
||||||
call s:C("@type.builtin",g:cYellow,"","bold")
|
call s:C("@type.builtin",g:cYellow,"","bold")
|
||||||
call s:C("@variable",g:cYellow,"","")
|
call s:C("@variable",g:cBlue,"","")
|
||||||
call s:C("@variable.builtin",g:cYellow,"","bold")
|
call s:C("@variable.builtin",g:cYellow,"","bold")
|
||||||
call s:C("@warning",g:cRed,"","")
|
call s:C("@warning",g:cRed,"","")
|
||||||
hi! link @annotation @comment
|
hi! link @annotation @comment
|
||||||
hi! link @comment Comment
|
hi! link @comment Comment
|
||||||
hi! link @conditional Conditional
|
hi! link @conditional Conditional
|
||||||
hi! link @field @function
|
|
||||||
hi! link @method @function
|
hi! link @method @function
|
||||||
hi! link @note @comment
|
hi! link @note @comment
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue