From 0cf2951761393e8ae3d84f2fc5a239e6a54cdf37 Mon Sep 17 00:00:00 2001 From: Ricardo Costa Date: Sun, 8 Sep 2024 20:46:56 +0200 Subject: [PATCH] fix markup.italic --- lua/nightfox/group/modules/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nightfox/group/modules/treesitter.lua b/lua/nightfox/group/modules/treesitter.lua index cfc226ab..569c9489 100644 --- a/lua/nightfox/group/modules/treesitter.lua +++ b/lua/nightfox/group/modules/treesitter.lua @@ -93,7 +93,7 @@ function M.get(spec, config, opts) -- Markup ----------------------------------------------------------------- ["@markup"] = { fg = spec.fg1 }, -- For strings considerated text in a markup language. ["@markup.strong"] = { fg = P.red:subtle(), style = "bold" }, -- bold text - ["@markup.italic"] = { link = "" }, -- italic text + ["@markup.italic"] = { link = "Italic" }, -- italic text ["@markup.strikethrough"] = { fg = spec.fg1, style = "strikethrough" }, -- struck-through text ["@markup.underline"] = { link = "Underline" }, -- underlined text (only for literal underline markup!)