Skip to content

Commit

Permalink
update color preference for org-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzongxiong committed Sep 15, 2023
1 parent 4c28f44 commit 940fbe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lisp/init-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@

;; Extended use of TODO keywords
(setq org-todo-keywords
'((sequence "TODO(t)" "IN-PROGRESS(i)" "DONE (d)" "CANCELED (c)" "BUG (b)"))
'((sequence "TODO(t)" "IN-PROGRESS(i)" "CANCELED(c)" "BUG(b)" "DONE(d)" ))
)

(setq org-todo-keyword-faces
'(("IN-PROGRESS" . "orange") ("CANCELED" . "red") ("DONE" . "green"))
'(("TODO" . "orange") ("IN-PROGRESS" . "yellow") ("CANCELED" . "gray") ("DONE" . "green") ("BUG" . "red"))
)

;; C-c ' --> org-edit-special & optional ARG
Expand Down

0 comments on commit 940fbe8

Please sign in to comment.