diff --git a/.emacs.d/lisp/init-org.el b/.emacs.d/lisp/init-org.el index c14d025f..5dac9b6a 100644 --- a/.emacs.d/lisp/init-org.el +++ b/.emacs.d/lisp/init-org.el @@ -39,4 +39,8 @@ (setq desktop-files-not-to-save (concat (substring desktop-files-not-to-save 0 -2) "\\|" (regexp-quote (expand-file-name contacts)) "\\)")) (setq org-contacts-files (list contacts))))) +;;; Add keywords. +(setq org-todo-keywords '((sequence "TODO" "REVIEW" "DONE"))) +(setq org-todo-keyword-faces '(("REVIEW" :foreground "Gold" :weight bold))) + (provide 'init-org)