From 1b0d3c004ea1b1a6bb9c16bca8c1570031b1ffda Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Thu, 18 Sep 2025 16:27:46 +1000 Subject: [PATCH] Use on more targeted syntax available in regex --- colors/vim-monokai-tasty.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index 24d0741..87c41a3 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -715,6 +715,11 @@ if (has('nvim-0.8')) call Highlight('@lsp.type.namespace.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none }) call Highlight('@lsp.type.parameter.typescript.tsx', { 'fg': s:orange, 'bg': s:none, 'style': s:none }) call Highlight('@lsp.typemod.parameter.declaration.typescript.tsx', { 'fg': s:orange, 'bg': s:none, 'style': s:none }) + call Highlight('@keyword.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none }) + call Highlight('@punctuation.delimiter.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none }) + call Highlight('@punctuation.bracket.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none }) + call Highlight('@operator.typescript', { 'fg': s:none, 'bg': s:none, 'style': s:none }) + call Highlight('@variable.builtin.typescript', { 'fg': s:light_blue, 'bg': s:none, 'style': s:none }) " }}} " TypeScript React (TSX) {{{