Skip to content

Commit a35c94d

Browse files
committed
fix(theme): support italic text in Markdown file
- Treesitter: `@markup.emphasis` -> `@markup.italic`
1 parent cd57a6e commit a35c94d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/dullahan/theme.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ function M.setup()
244244
["@markup.raw"] = { link = "String" },
245245
["@markup.math"] = { link = "Special" },
246246
["@markup.strong"] = { bold = true },
247-
["@markup.emphasis"] = { italic = true },
247+
["@markup.italic"] = { italic = true },
248248
["@markup.strikethrough"] = { strikethrough = true },
249249
["@markup.underline"] = { underline = true },
250250
["@markup.heading"] = { link = "Title" },

0 commit comments

Comments
 (0)