Skip to content

Commit

Permalink
fix(treesitter): markup.heading only bold in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
uncenter committed Jan 5, 2025
1 parent 7d5c15b commit b012d08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/catppuccin/groups/integrations/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci
["@markup.strikethrough"] = { fg = C.text, style = { "strikethrough" } }, -- strikethrough text
["@markup.underline"] = { link = "Underlined" }, -- underlined text

["@markup.heading"] = { fg = C.blue, style = { "bold" } }, -- titles like: # Example
["@markup.heading"] = { fg = C.blue }, -- titles like: # Example
["@markup.heading.markdown"] = { style = { "bold" } }, -- bold headings in markdown, but not in HTML or other markup

["@markup.math"] = { fg = C.blue }, -- math environments (e.g. `$ ... $` in LaTeX)
["@markup.quote"] = { fg = C.pink }, -- block quotes
Expand Down

0 comments on commit b012d08

Please sign in to comment.