Skip to content

Instantly share code, notes, and snippets.

@Inc0n
Last active October 19, 2022 21:26
Show Gist options
  • Save Inc0n/8f1f7eecbd79722deb3c2f58cfeebac6 to your computer and use it in GitHub Desktop.
Save Inc0n/8f1f7eecbd79722deb3c2f58cfeebac6 to your computer and use it in GitHub Desktop.
emacs simple vanila org modern todo and priority clone
(with-eval-after-load 'org-faces
(setq org-todo-keyword-faces
(append
(cl-loop for todo in '("TODO" "NEXT" "STARTED" "PROJECT" "HOLD")
with faces = '(:height 0.8 :inherit (org-modern-todo))
collect (cons todo faces))
(cl-loop for todo in '("CANCELLED" "DONE")
with faces = '(:height 0.8 :inherit (org-modern-done))
collect (cons todo faces)))
org-priority-faces
(cl-loop with end = org-priority-lowest
for i from org-priority-highest to end
collect (list i :inherit 'org-modern-priority))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment