Skip to content

Commit

Permalink
fix(markdown, org): fixed treesitter highlights for inline verbatim m…
Browse files Browse the repository at this point in the history
…arkup
  • Loading branch information
ficcdaf committed Jan 24, 2025
1 parent 44a1d48 commit a2fb230
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/ashen/languages/markdown.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ M.map = {
["@markup.list"] = { c.orange_glow, nil },
["@markup.quote"] = { italic = true },
["@markup.math"] = { bold = true },
["@markup.raw"] = { c.g_2, c.g_10 },
}

return M
1 change: 1 addition & 0 deletions lua/ashen/languages/org.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ M.map = {
["@org.agenda.today"] = { "g_3", { bold = true } },
["@org.agenda.weekend"] = { "g_5" },
["@org.agenda.deadline"] = { "red_flame", { bold = true } },
["@org.verbatim"] = { "g_2", "g_10" },
}

return M

0 comments on commit a2fb230

Please sign in to comment.