From 01420bef4b27486f0d3ca44b0484a21f29330f72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20N=C3=A4sman?= Date: Fri, 20 Sep 2024 13:37:49 +0300 Subject: [PATCH] feat: add background highlight to LSP signature help I used surface1 as the color, the same as those used by LspReferenceText, LspReferenceRead, and LspReferenceWrite. --- lua/catppuccin/groups/integrations/native_lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/catppuccin/groups/integrations/native_lsp.lua b/lua/catppuccin/groups/integrations/native_lsp.lua index 49ce8135..8b945ec3 100644 --- a/lua/catppuccin/groups/integrations/native_lsp.lua +++ b/lua/catppuccin/groups/integrations/native_lsp.lua @@ -75,7 +75,7 @@ function M.get() LspDiagnosticsDefaultWarning = { fg = warning }, -- Used as the mantle highlight group. Other LspDiagnostic highlights link to this by default (except Underline) LspDiagnosticsDefaultInformation = { fg = info }, -- Used as the mantle highlight group. Other LspDiagnostic highlights link to this by default (except Underline) LspDiagnosticsDefaultHint = { fg = hint }, -- Used as the mantle highlight group. Other LspDiagnostic highlights link to this by default (except Underline) - LspSignatureActiveParameter = { fg = C.peach }, + LspSignatureActiveParameter = { bg = C.surface1, fg = C.peach }, -- LspDiagnosticsFloatingError = { }, -- Used to color "Error" diagnostic messages in diagnostics float -- LspDiagnosticsFloatingWarning = { }, -- Used to color "Warning" diagnostic messages in diagnostics float -- LspDiagnosticsFloatingInformation = { }, -- Used to color "Information" diagnostic messages in diagnostics float