From a35c94d6bc5dab6f13f527758a7c3fd0530d95e0 Mon Sep 17 00:00:00 2001 From: PunGrumpy <108584943+PunGrumpy@users.noreply.github.com> Date: Fri, 22 Mar 2024 14:06:56 +0700 Subject: [PATCH] fix(theme): support italic text in `Markdown` file - Treesitter: `@markup.emphasis` -> `@markup.italic` --- lua/dullahan/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/dullahan/theme.lua b/lua/dullahan/theme.lua index 68c27ed2..0b684bc4 100644 --- a/lua/dullahan/theme.lua +++ b/lua/dullahan/theme.lua @@ -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" },