From de2a7e78e54be78524659e6af18731a543dbba57 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 10 Sep 2022 19:57:29 +0200 Subject: [PATCH] feat: added better support for treesitter markdown --- lua/tokyonight/theme.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 05ca84b..63a5d83 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -161,6 +161,9 @@ function M.setup() markdownH2 = { fg = c.blue, style = "bold" }, markdownLinkText = { fg = c.blue, style = "underline" }, + ["@punctuation.special.markdown"] = { fg = c.orange, style = "bold" }, + ["@text.literal.markdown_inline"] = { bg = c.terminal_black, 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