From 70fec1c1f1369022103e6824399652ca0d444908 Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Fri, 3 Jan 2025 00:11:25 +0100 Subject: [PATCH] nvim: just color underlines for diagnostics --- home/common/nvim/dieter/lua/dieter/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/common/nvim/dieter/lua/dieter/init.lua b/home/common/nvim/dieter/lua/dieter/init.lua index e8b7abd..e552e61 100644 --- a/home/common/nvim/dieter/lua/dieter/init.lua +++ b/home/common/nvim/dieter/lua/dieter/init.lua @@ -148,10 +148,10 @@ local setupGroups = function(c) DiagnosticFloatingWarn = { fg = c.diagnostic_warning, bg = c.popup_warning_bg }, DiagnosticFloatingInfo = { fg = c.diagnostic_info, bg = c.popup_info_bg }, DiagnosticFloatingHint = { fg = c.diagnostic_hint, bg = c.popup_hint_bg }, - DiagnosticUnderlineError = { fg = c.diagnostic_error, undercurl = true }, - DiagnosticUnderlineWarn = { fg = c.diagnostic_warn, undercurl = true }, - DiagnosticUnderlineInfo = { fg = c.diagnostic_info, undercurl = true }, - DiagnosticUnderlinehint = { fg = c.diagnostic_hint, undercurl = true }, + DiagnosticUnderlineError = { fg = c.foreground, undercurl = true, sp = c.diagnostic_error }, + DiagnosticUnderlineWarn = { fg = c.foreground, undercurl = true, sp = c.diagnostic_warn }, + DiagnosticUnderlineInfo = { fg = c.foreground, undercurl = true, sp = c.diagnostic_info }, + DiagnosticUnderlinehint = { fg = c.foreground, undercurl = true, sp = c.diagnostic_hint }, DiagnosticSignError = { fg = c.diagnostic_error }, DiagnosticSignHint = { fg = c.diagnostic_hint },