Skip to content

Commit

Permalink
fix(markdown, org): made inline code less harsh
Browse files Browse the repository at this point in the history
  • Loading branch information
ficcdaf committed Jan 24, 2025
1 parent a2fb230 commit e157cf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/ashen/languages/markdown.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +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 },
["@markup.raw"] = { c.g_4, c.g_10 },
}

return M
2 changes: 1 addition & 1 deletion lua/ashen/languages/org.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +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" },
["@org.verbatim"] = { "g_4", "g_10" },
}

return M

0 comments on commit e157cf4

Please sign in to comment.