Last active
October 19, 2022 21:26
-
-
Save Inc0n/8f1f7eecbd79722deb3c2f58cfeebac6 to your computer and use it in GitHub Desktop.
emacs simple vanila org modern todo and priority clone
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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