From ece39b9dba6f8dce136e88ec6870425aea95e379 Mon Sep 17 00:00:00 2001 From: Christian Maniewski Date: Wed, 5 May 2021 12:27:44 +0200 Subject: [PATCH] Add terminal-debug colors (#31) --- lua/tokyonight/theme.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 4c4b9c2..899349e 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -138,6 +138,9 @@ function M.setup(config) markdownH2 = { fg = c.blue, style = "bold" }, markdownH2Delimiter = { fg = c.blue }, + debugPC = { bg = c.bg_sidebar }, -- used for highlighting the current line in terminal-debug + debugBreakpoint = { bg = util.darken(c.info, 0.1), fg = c.info }, -- used for breakpoint colors in terminal-debug + -- These groups are for the native LSP client. Some other LSP clients may -- use these groups, or use their own. Consult your LSP client's -- documentation.