From 585ab560b2d57aede6eee1b5bb6f07659c143065 Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Fri, 14 Jun 2024 11:18:28 -0700 Subject: [PATCH] add some treesitter color overrides The default colors for some of these things are unreadable when the theme is in "light" mode. For others, I think the new choice is a bit better, e.g. making function calls bold. --- colors/better-plain.vim | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/colors/better-plain.vim b/colors/better-plain.vim index 1d954cb..caba8d8 100644 --- a/colors/better-plain.vim +++ b/colors/better-plain.vim @@ -278,3 +278,14 @@ hi link ALEInfoSign InfoMsg hi link sqlStatement Statement hi link sqlKeyword Keyword + +" Treesitter overrides +hi! link TSVariable Normal +hi! link TSVariableBuiltin Normal +hi! link @variable TSVariable +hi! link @variable.builtin TSVariableBuiltin +hi! link @keyword.operator Statement +hi! link @keyword.type Statement +hi! link @function.call Statement +hi! link @type Statement +hi! link @type.builtin Statement -- 2.45.2