From 33d2f6938e5a44b831d8b65ec35f67fc14c015db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Silkeb=C3=A6kken?= Date: Thu, 14 Oct 2021 11:26:24 +0200 Subject: [PATCH] fix: remove unused highlight groups --- lua/lush_theme/monotone.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lua/lush_theme/monotone.lua b/lua/lush_theme/monotone.lua index f4cb086..3a26135 100644 --- a/lua/lush_theme/monotone.lua +++ b/lua/lush_theme/monotone.lua @@ -207,11 +207,6 @@ return lush(function() DiagnosticInfo({ fg = blue, bg = shade(blue, -78) }), -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline) DiagnosticHint({ fg = green, bg = shade(green, -78) }), -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline) - DiagnosticLineError({ bg = shade(red, -78) }), - DiagnosticLineWarn({ bg = shade(yellow, -78) }), - DiagnosticLineInfo({ bg = shade(blue, -78) }), - DiagnosticLineHint({ bg = shade(green, -78) }), - -- LspDiagnosticsVirtualTextError { }, -- Used for "Error" diagnostic virtual text -- LspDiagnosticsVirtualTextWarning { }, -- Used for "Warning" diagnostic virtual text -- LspDiagnosticsVirtualTextInformation { }, -- Used for "Information" diagnostic virtual text