From 65d0d374101960f7962bc200f6d6d19c916d64be Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sat, 28 Aug 2021 13:57:47 -0500 Subject: [PATCH] request #15: make Todo comments bold --- lua/catppuccino/core/mapper.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/catppuccino/core/mapper.lua b/lua/catppuccino/core/mapper.lua index 55c657b..5f3652a 100644 --- a/lua/catppuccino/core/mapper.lua +++ b/lua/catppuccino/core/mapper.lua @@ -119,7 +119,7 @@ local function get_base() -- Ignore = { }, -- (preferred) left blank, hidden |hl-Ignore| Error = { fg = cpt.error }, -- (preferred) any erroneous construct - Todo = { bg = cpt.yellow, fg = cpt.bg }, -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX + Todo = { bg = cpt.yellow, fg = cpt.bg, style = "bold" }, -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX qfLineNr = { fg = cpt.yellow }, qfFileName = { fg = cpt.blue }, htmlH1 = { fg = cpt.magenta, style = "bold" },