From ff28f2dde464a9e105c7dc041127eb60059d955a Mon Sep 17 00:00:00 2001 From: Iron-E Date: Thu, 1 Apr 2021 13:59:21 -0400 Subject: [PATCH] fix(colors): remove accidental quotations --- colors/highlite.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/colors/highlite.vim b/colors/highlite.vim index 459027f..3616fcd 100644 --- a/colors/highlite.vim +++ b/colors/highlite.vim @@ -764,10 +764,10 @@ local highlight_groups = { ALEWarningSign = 'WarningMsg', --[[ 4.4.2. coc.nvim ]] - CocErrorHighlight = {style={'undercurl', color='red'}}, - CocHintHighlight = {style={'undercurl', color='magenta'}}, - CocInfoHighlight = {style={'undercurl', color='pink_light'}}, - CocWarningHighlight = {style={'undercurl', color='orange'}}, + CocErrorHighlight = {style={'undercurl', color=red}}, + CocHintHighlight = {style={'undercurl', color=magenta}}, + CocInfoHighlight = {style={'undercurl', color=pink_light}}, + CocWarningHighlight = {style={'undercurl', color=orange}}, CocErrorSign = 'ALEErrorSign', CocHintSign = 'HintMsg', CocInfoSign = 'InfoMsg',