refactor(nvim): set highlights for org todo priorities

This commit is contained in:
Price Hiller 2024-03-09 22:24:47 -06:00
parent 111b7daa8b
commit 8c255fab19
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -312,6 +312,18 @@ return {
nocombine = true,
},
},
{
"@org.priority.highest",
{ fg = colors.samuraiRed, nocombine = true, underline = true, bold = true },
},
{
"@org.priority.default",
{ fg = colors.roninYellow, nocombine = true, underline = true, bold = true },
},
{
"@org.priority.lowest",
{ fg = colors.fujiWhite, nocombine = true, underline = true, bold = true },
},
-- Titles/Headlines
{ "@markup.heading.1", { fg = colors.crystalBlue, bold = true } },