From f1885575df9c0ed00c49544e213672d3a8da59ad Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Wed, 4 Oct 2023 15:22:04 +1100 Subject: [PATCH] Use standard scala parameter identifier --- colors/vim-monokai-tasty.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index f1249ae..156cc1f 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -665,7 +665,7 @@ if (has('nvim-0.8')) call Highlight('@conditional.scala', { 'fg': s:purple, 'bg': s:none, 'style': s:none }) call Highlight('@variable.builtin.scala', { 'fg': s:light_blue, 'bg': s:none, 'style': s:italic }) " LSP semantic highlights - call Highlight('@lsp.type.parameter.scala', { 'fg': s:orange, 'bg': s:none, 'style': s:none }) + call Highlight('@lsp.type.parameter.scala', { 'fg': s:none, 'bg': s:none, 'style': s:none }) call Highlight('@lsp.type.namespace.scala', { 'fg': s:none, 'bg': s:none, 'style': s:none }) call Highlight('@lsp.type.method.scala', { 'fg': s:none, 'bg': s:none, 'style': s:none }) call Highlight('@lsp.type.variable.scala', { 'fg': s:none, 'bg': s:none, 'style': s:none })