From a2dff2a02b04ca2ff81573b0e9744a3ce75897cc Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Thu, 2 Nov 2017 10:20:15 -0700 Subject: [PATCH] Move org-todo-keywords into init --- emacs/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/emacs/init.el b/emacs/init.el index 4ee3a1e..d608c83 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -183,6 +183,10 @@ (add-hook 'org-mode-hook 'evil-org-mode) (evil-org-set-key-theme '(navigation insert textobjects additional)) (setq org-startup-folded "showeverything") + +(setq org-todo-keywords + '((sequence "NEW(n)" "QUALIFIED(q)" "STARTED(s)" "BLOCKED(b)" "|" "DONE(d)"))) + (setq org-todo-keyword-faces '(("NEW" . "white") ("QUALIFIED" . "lightblue")