diff --git a/init.el b/init.el index 580b6dc..364f72f 100644 --- a/init.el +++ b/init.el @@ -8,3 +8,15 @@ ) ;END; +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(org-agenda-files (quote ("~/Documents/planning/2013/08/17/plans.org")))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) diff --git a/lisp.d/org-mode.el b/lisp.d/org-mode.el index 5c43216..94daa28 100644 --- a/lisp.d/org-mode.el +++ b/lisp.d/org-mode.el @@ -1,4 +1,7 @@ ; -; +; Configure the TODO keyword sequence ; +(setq + org-todo-keywords '((sequence "PENDING" "IN_PROGRESS" "DONE")) +)