From f81398b939b004820568da806e2597b5c7874754 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Fri, 2 Dec 2022 19:02:44 +0100 Subject: [PATCH] feat: added support for markdown checkboxes --- lua/tokyonight/theme.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index aac3bac5..7c9ef87c 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -163,6 +163,8 @@ function M.setup() markdownLinkText = { fg = c.blue, underline = true }, ["@punctuation.special.markdown"] = { fg = c.orange, bold = true }, + ["@text.todo.unchecked"] = { fg = c.blue }, -- For brackets and parens. + ["@text.todo.checked"] = { fg = c.green1 }, -- For brackets and parens. ["@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