feat(nvim): improve org keyword & schedule colors
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s
This commit is contained in:
parent
efcf21ae25
commit
0f48c14b83
@ -295,6 +295,8 @@ return {
|
||||
"@org.timestamp.inactive.delimiter",
|
||||
get_hl("@org.timestamp.inactive"),
|
||||
},
|
||||
{ "@org.keyword.done", { fg = colors.springGreen, bold = true, italic = true } },
|
||||
{ "@org.keyword.todo", { fg = colors.samuraiRed, bold = true, italic = true } },
|
||||
{
|
||||
"@org.priority.highest",
|
||||
{ fg = colors.samuraiRed, bg = "#fabebe", nocombine = true, underdouble = true, bold = true },
|
||||
@ -307,6 +309,20 @@ return {
|
||||
"@org.priority.lowest",
|
||||
{ fg = colors.fujiWhite, bg = colors.fujiGray, nocombine = true, underline = true, bold = true },
|
||||
},
|
||||
{
|
||||
"@org.agenda.scheduled_past",
|
||||
{
|
||||
fg = colors.springViolet2,
|
||||
italic = true,
|
||||
},
|
||||
},
|
||||
{
|
||||
"@org.agenda.deadline",
|
||||
{
|
||||
underdotted = true,
|
||||
fg = colors.waveRed,
|
||||
},
|
||||
},
|
||||
|
||||
-- Titles/Headlines
|
||||
{ "@markup.heading.1", { fg = colors.crystalBlue, bold = true } },
|
||||
|
Loading…
Reference in New Issue
Block a user