~craftyguy/vim-better-colors-plain

585ab560b2d57aede6eee1b5bb6f07659c143065 — Clayton Craft 2 months ago 38067b2 master
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.
1 files changed, 11 insertions(+), 0 deletions(-)

M colors/better-plain.vim
M colors/better-plain.vim => colors/better-plain.vim +11 -0
@@ 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