From 62494966cc599758d7bae2522b7e7ce8ff2e4737 Mon Sep 17 00:00:00 2001 From: Bruno Krugel Date: Sun, 1 Oct 2023 21:17:08 -0300 Subject: [PATCH] Match trouble with LspDiagnostics (#250) --- lua/base46/extended_integrations/trouble.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lua/base46/extended_integrations/trouble.lua b/lua/base46/extended_integrations/trouble.lua index f665dfe..95441d8 100644 --- a/lua/base46/extended_integrations/trouble.lua +++ b/lua/base46/extended_integrations/trouble.lua @@ -4,23 +4,23 @@ return { TroubleCount = { fg = colors.pink }, TroubleCode = { fg = colors.white }, TroubleWarning = { fg = colors.orange }, - TroubleSignWarning = { fg = colors.yellow }, + TroubleSignWarning = { link = "DiagnosticWarn"}, TroubleTextWarning = { fg = colors.white }, TroublePreview = { fg = colors.red }, TroubleSource = { fg = colors.cyan }, - TroubleSignHint = { fg = colors.green }, - TroubleTextHint = { fg = colors.red }, + TroubleSignHint = { link = "DiagnosticHint"}, + TroubleTextHint = { fg = colors.white }, TroubleHint = { fg = colors.orange }, - TroubleSignOther = { fg = colors.green }, + TroubleSignOther = { link = "DiagnosticNormal"}, TroubleSignInformation = { fg = colors.white }, - TroubleTextInformation = { fg = colors.blue }, + TroubleTextInformation = { fg = colors.white }, TroubleInformation = { fg = colors.white }, TroubleError = { fg = colors.red }, - TroubleTextError = { fg = colors.red }, - TroubleSignError = { fg = colors.red }, + TroubleTextError = { fg = colors.white }, + TroubleSignError = { link = "DiagnosticError"}, TroubleText = { fg = colors.white }, TroubleFile = { fg = colors.yellow }, - TroubleFoldIcon = { fg = colors.cyan }, + TroubleFoldIcon = { link = "Folded"}, TroubleNormal = { fg = colors.white }, TroubleLocation = { fg = colors.red }, TroubleIndent = { link = colors.Comment },