From ba1f81e04b39d1ffd90c70ea93ba597166272c36 Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Wed, 23 Apr 2025 09:34:25 +1000 Subject: [PATCH] Override magenta typescriptFuncCallArg --- colors/vim-monokai-tasty.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index e5d3e44..89680d5 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -456,6 +456,7 @@ call Highlight('typescriptGlobalNodeObjects', { 'fg': s:magenta, 'bg': s:none, ' call Highlight('typescriptGlobalObjects', { 'fg': s:light_blue, 'bg': s:none, 'style': s:none }) call Highlight('typescriptArrowFunction', { 'fg': s:light_blue, 'bg': s:none, 'style': s:none }) call Highlight('typescriptFuncCall', { 'fg': s:light_blue, 'bg': s:none, 'style': s:none }) +call Highlight('typescriptFuncCallArg', { 'fg': s:none, 'bg': s:none, 'style': s:none }) " TypeScript Treesitter call Highlight('typescriptTSBoolean', { 'fg': s:orange, 'bg': s:none, 'style': s:none }) @@ -501,6 +502,7 @@ call Highlight('vimParenSep', { 'fg': s:white, 'bg': s:none, 'style': s:bold }) call Highlight('vimOperParen', { 'fg': s:light_blue, 'bg': s:none, 'style': s:italic }) call Highlight('vimUserFunc', { 'fg': s:purple, 'bg': s:none, 'style': s:none }) call Highlight('vimFunction', { 'fg': s:orange, 'bg': s:none, 'style': s:none }) +call Highlight('vimVar', { 'fg': s:white, 'bg': s:none, 'style': s:none }) " }}} " XML {{{