From 7952740fe0d6bc0b4357257b994ceb988269299d Mon Sep 17 00:00:00 2001 From: hylo Date: Sun, 19 Mar 2023 20:35:24 +0100 Subject: [PATCH] feat: markdown (@text) --- lua/flatwhite/groups.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lua/flatwhite/groups.lua b/lua/flatwhite/groups.lua index ca8d0f8..0495597 100644 --- a/lua/flatwhite/groups.lua +++ b/lua/flatwhite/groups.lua @@ -129,6 +129,7 @@ local function setup(configs) ["@error"] = colors.fw_red, ["@punctuation.delimiter"] = { fg = colors.fg }, ["@punctuation.bracket"] = { fg = colors.fg }, + -- ["@punctuation.special"] = { fg = colors.fg }, ["@punctuation.special"] = { fg = colors.fg }, ["@constant"] = { fg = colors.fg }, @@ -180,10 +181,10 @@ local function setup(configs) ["@text"] = { fg = colors.orange }, ["@text.strong"] = { fg = colors.orange, bold = true }, -- bold ["@text.emphasis"] = { fg = colors.yellow, italic = true }, -- italic - ["@text.underline"] = { fg = colors.orange }, - ["@text.title"] = { fg = colors.pink, bold = true }, -- title - ["@text.literal"] = { fg = colors.yellow }, -- inline code - ["@text.uri"] = { fg = colors.yellow, italic = true }, -- urls + ["@text.underline"] = { fg = colors.orange, underline = true }, + ["@text.title"] = { fg = colors.purple_text, bg = colors.purple_bg, bold = true }, -- title + ["@text.literal"] = colors.fw_orange, + ["@text.uri"] = { fg = colors.blue_text, bg = colors.blue_bg, italic = true }, -- urls ["@text.reference"] = { fg = colors.orange, bold = true }, ["@tag"] = { fg = colors.cyan }, -- 2.30.2