From 43790ec5110abf5e2d00c3ae1bd7e4daec5009c6 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sun, 9 Jan 2022 11:10:46 -0500 Subject: [PATCH] fix: markdown syntax --- lua/catppuccin/core/integrations/treesitter.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/catppuccin/core/integrations/treesitter.lua b/lua/catppuccin/core/integrations/treesitter.lua index 2fc16e1..7dc8667 100644 --- a/lua/catppuccin/core/integrations/treesitter.lua +++ b/lua/catppuccin/core/integrations/treesitter.lua @@ -77,9 +77,9 @@ function M.get(cp) -- TSURI = { }; -- Any URI like a link or email. -- -- Markdown tresitter parser support - TSURI = { fg = cp.flamingo, style = "italic,underline" }, -- urls, links and emails - TSLiteral = { fg = cp.green, style = "italic" }, -- used for inline code in markdown and for doc in python (""") - TSTextReference = { fg = cp.teal, style = "bold" }, -- references + TSURI = { fg = cp.rosewater, style = "italic,underline" }, -- urls, links and emails + TSLiteral = { fg = cp.teal, style = "italic" }, -- used for inline code in markdown and for doc in python (""") + TSTextReference = { fg = cp.lavender, style = "bold" }, -- references TSTitle = { fg = cp.blue, style = "bold" }, -- titles like: # Example TSEmphasis = { fg = cp.maroon, style = "italic" }, -- bold TSStrong = { fg = cp.maroon, style = "bold" }, -- italic