From 1b16e4375c103a6154b83b1ece0479c44be8c881 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 16 Aug 2015 14:54:25 -0700 Subject: [PATCH] Give org-todo-keywords definition some space --- dotfiles/emacs.d/init.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index dfa3e2bc..bbf52f41 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -1048,11 +1048,12 @@ the same tree node, and the headline of the tree node in the Org-mode file." ((org-agenda-overriding-header "At least priority C:")))))) - ;; Record changes to todo states - (setq org-log-into-drawer t) (setq org-todo-keywords '((sequence "TODO(t!)" "NEXT(n!)" "STARTED(s!)" "WAIT(w!)" "BACKLOG(b!)" "|" "DONE(d!)" "CANCELED(c!)" "OBVIATED(o!)" "HANDLED(h!)" "EXPIRED(e!)"))) + + ;; Record changes to todo states + (setq org-log-into-drawer t) ;; Stop starting agenda from deleting frame setup! (setq org-agenda-window-setup 'other-window) (define-key mode-specific-map [?a] 'org-agenda)