Skip to content

Commit

Permalink
feat: add background highlight to LSP signature help (#771)
Browse files Browse the repository at this point in the history
I used surface1 as the color, the same as those used by
LspReferenceText, LspReferenceRead, and LspReferenceWrite.
  • Loading branch information
AndreasNasman authored Oct 19, 2024
1 parent 5ea0888 commit de096dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/catppuccin/groups/integrations/native_lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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.surface0, style = { "bold" } },
-- 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
Expand Down

0 comments on commit de096dd

Please sign in to comment.