From 7f504839cd38820909994fe903339d248608d013 Mon Sep 17 00:00:00 2001 From: Jason Tian Date: Thu, 4 Jan 2024 16:04:21 +0800 Subject: [PATCH] add new org-todo-keywords - CLOSED --- lisp/init-org.el | 3 ++- lisp/init-packages.el | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/init-org.el b/lisp/init-org.el index fd446a3..6724aaf 100644 --- a/lisp/init-org.el +++ b/lisp/init-org.el @@ -78,13 +78,14 @@ (setq org-todo-keywords ;; '((sequence "☛ TODO(t)" "➼ IN-PROGRESS" "⚑ WAIT(w@/!)" "|" "✔ DONE(d!)" "✘ CANCELED(c@)") - '((sequence "TODO(t)" "IN-PROGRESS" "WAIT(w@/!)" "|" "DONE(d!)" "CANCELED(c@)") + '((sequence "TODO(t)" "IN-PROGRESS" "WAIT(w@/!)" "|" "DONE(d!)" "CANCELED(c@)" "CLOSED") (sequence "REPORT(r)" "BUG(b)" "KNOWNCAUSE(k)" "IMPROVEMENT(m)" "ENHANCEMENT(e)" "FEATURE(a)" "|" "FIXED(f)") )) (setf org-todo-keyword-faces '( ("CANCELED" . (:foreground "white" :background "#95A5A6")) ("DONE" . (:foreground "white" :background "#2E8B57")) + ("CLOSED" . (:foreground "white" :background "#2E8B57")) ("WAIT" . (:foreground "white" :background "#F9BC41")) ("IN-PROGRESS" . (:foreground "white" :background "#3498DB")) ("TODO" . (:foreground "white" :background "#5F87FF")) diff --git a/lisp/init-packages.el b/lisp/init-packages.el index 183853c..61522f3 100644 --- a/lisp/init-packages.el +++ b/lisp/init-packages.el @@ -238,6 +238,7 @@ ;; align with the org-todo-keyword-faces ("TODO" :foreground "white" :background "#5F87FF") ("DONE" :foreground "white" :background "#2E8B57") + ("CLOSED" :foreground "white" :background "#2E8B57") ("CANCELED" :foreground "white" :background "#95A5A6") ("WAIT" :foreground "white" :background "#F9BC41") ("IN-PROGRESS" :foreground "white" :background "#3498DB")