From a2fb7982369e107f41d7834a2fc90df7f67fe182 Mon Sep 17 00:00:00 2001 From: tecosaur <20903656+tecosaur@users.noreply.github.com> Date: Sun, 12 Apr 2020 13:50:29 +0800 Subject: [PATCH] Add another org priority + colouring --- config.org | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/config.org b/config.org index 07c44bd..f0db123 100644 --- a/config.org +++ b/config.org @@ -1121,10 +1121,18 @@ I've also added some fun alternatives, just commented out. (after! org (setq org-ellipsis " ▾ " org-superstar-headline-bullets-list '("◉" "○" "✸" "✿" "✤" "✜" "◆" "▶") - org-fancy-priorities-list '((?A . "⚑") (?B . "⬆") (?C . "⬇") (?D . "❓")) - org-priority-faces '((?A . error) (?B . warning) (?C . success) (?D . all-the-icons-blue)) + org-fancy-priorities-list '((?A . "⚑") ;; ASAP + (?B . "⬆") ;; High + (?C . "■") ;; Medium + (?D . "⬇") ;; Low + (?E . "❓")) ;; Optional + org-priority-faces '((?A . all-the-icons-red) + (?B . all-the-icons-orange) + (?C . all-the-icons-yellow) + (?D . all-the-icons-green) + (?E . all-the-icons-blue)) org-priority-highest ?A - org-priority-lowest ?D + org-priority-lowest ?E ;; org-superstar-headline-bullets-list '("Ⅰ" "Ⅱ" "Ⅲ" "Ⅳ" "Ⅴ" "Ⅵ" "Ⅶ" "Ⅷ" "Ⅸ" "Ⅹ") )) #+END_SRC