diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-05-30 03:24:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 09:24:55 +0200 |
commit | caf86fbc3cf390cac8c5fba599f1500f49f622d7 (patch) | |
tree | 20119b7bf4383379eacf3fb4d789ca5e988d910f /lua/no-clown-fiesta/groups | |
parent | 0cf858e14aa98218c4aec92011bded80e935549b (diff) |
Add orgmode agenda highlighting (#38)
Diffstat (limited to 'lua/no-clown-fiesta/groups')
-rw-r--r-- | lua/no-clown-fiesta/groups/orgmode.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/groups/orgmode.lua b/lua/no-clown-fiesta/groups/orgmode.lua index 10774c9..7c479c7 100644 --- a/lua/no-clown-fiesta/groups/orgmode.lua +++ b/lua/no-clown-fiesta/groups/orgmode.lua @@ -61,6 +61,8 @@ function M.highlight(palette, opts) ["@org.table.delimiter"] = { link = "@punctuation.special", default = true }, ["@org.table.heading"] = { link = "@markup.heading", default = true }, ["@org.edit_src"] = { link = "Visual", default = true }, + ["@org.agenda.scheduled"] = { fg = palette.cyan, default = true }, + ["@org.keyword.todo"] = { fg = palette.red, default = true }, ["@org.keyword.done"] = { fg = palette.sign_add, default = true }, } |