Add another org priority + colouring

This commit is contained in:
tecosaur 2020-04-12 13:50:29 +08:00
parent 2758fc3d9d
commit a2fb798236

View file

@ -1121,10 +1121,18 @@ I've also added some fun alternatives, just commented out.
(after! org (after! org
(setq org-ellipsis " ▾ " (setq org-ellipsis " ▾ "
org-superstar-headline-bullets-list '("◉" "○" "✸" "✿" "✤" "✜" "◆" "▶") org-superstar-headline-bullets-list '("◉" "○" "✸" "✿" "✤" "✜" "◆" "▶")
org-fancy-priorities-list '((?A . "⚑") (?B . "⬆") (?C . "⬇") (?D . "❓")) org-fancy-priorities-list '((?A . "⚑") ;; ASAP
org-priority-faces '((?A . error) (?B . warning) (?C . success) (?D . all-the-icons-blue)) (?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-highest ?A
org-priority-lowest ?D org-priority-lowest ?E
;; org-superstar-headline-bullets-list '("" "Ⅱ" "Ⅲ" "Ⅳ" "" "Ⅵ" "Ⅶ" "Ⅷ" "Ⅸ" "") ;; org-superstar-headline-bullets-list '("" "Ⅱ" "Ⅲ" "Ⅳ" "" "Ⅵ" "Ⅶ" "Ⅷ" "Ⅸ" "")
)) ))
#+END_SRC #+END_SRC