From 0c7d4372d1bb7ed3af04a22cd636f57c7a713339 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sat, 10 Dec 2022 12:37:10 +0530 Subject: [PATCH] nvim: colors/yolokai: Enable undercurl for underline diagnostic This effectively reverts commit 59490d1. --- nvim/.config/nvim/colors/yolokai.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/.config/nvim/colors/yolokai.vim b/nvim/.config/nvim/colors/yolokai.vim index d070ff9..8e4ea99 100644 --- a/nvim/.config/nvim/colors/yolokai.vim +++ b/nvim/.config/nvim/colors/yolokai.vim @@ -188,10 +188,10 @@ local highlight_groups = { DiagnosticSignInfo = 'InfoMsg' , DiagnosticSignHint = 'HintMsg' , - DiagnosticUnderlineError = 'ErrorMsg' , - DiagnosticUnderlineWarn = 'WarningMsg', - DiagnosticUnderlineInfo = 'InfoMsg' , - DiagnosticUnderlineHint = 'HintMsg' , + DiagnosticUnderlineError = {style={'undercurl', color=red }}, + DiagnosticUnderlineWarn = {style={'undercurl', color=pink }}, + DiagnosticUnderlineInfo = {style={'undercurl', color=orange }}, + DiagnosticUnderlineHint = {style={'undercurl', color=purple }}, DiagnosticVirtualTextError = 'ErrorMsg' , DiagnosticVirtualTextWarn = 'WarningMsg',