Skip to content

Commit

Permalink
fix(theme): support italic text in Markdown file
Browse files Browse the repository at this point in the history
- Treesitter: `@markup.emphasis` -> `@markup.italic`
  • Loading branch information
PunGrumpy committed Mar 22, 2024
1 parent cd57a6e commit a35c94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/dullahan/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function M.setup()
["@markup.raw"] = { link = "String" },
["@markup.math"] = { link = "Special" },
["@markup.strong"] = { bold = true },
["@markup.emphasis"] = { italic = true },
["@markup.italic"] = { italic = true },
["@markup.strikethrough"] = { strikethrough = true },
["@markup.underline"] = { underline = true },
["@markup.heading"] = { link = "Title" },
Expand Down

0 comments on commit a35c94d

Please sign in to comment.