From b40cc528615d093e185ee6d3507f926d9b05392a Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 8 Jul 2021 10:26:49 +0200 Subject: [PATCH] feat: added support for LspSignatureActiveParameter --- lua/tokyonight/theme.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 9304fd86..8e9d656a 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -173,6 +173,8 @@ function M.setup(config) LspDiagnosticsUnderlineInformation = { style = "undercurl", sp = c.info }, -- Used to underline "Information" diagnostics LspDiagnosticsUnderlineHint = { style = "undercurl", sp = c.hint }, -- Used to underline "Hint" diagnostics + LspSignatureActiveParameter = { fg = c.orange }, + -- 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