From 2d8ff7dfaf8150f24db632bd223dfbd652a92cb7 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 6 Feb 2019 10:50:38 -0500 Subject: [PATCH] Change org agenda workflow --- emacs/init.org | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/emacs/init.org b/emacs/init.org index 0ff3255..0d080a7 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -637,8 +637,7 @@ Always show inline images: ** Refile targets #+BEGIN_SRC emacs-lisp (setq org-refile-use-outline-path 'file - org-refile-targets `((,(agenda-files "todo.org") :level . 0) - (,(agenda-files "backlog.org") :level . 0))) + org-refile-targets `((org-agenda-files :level . 0))) #+END_SRC ** Todo keywords @@ -650,15 +649,9 @@ Always show inline images: ** Agenda views #+BEGIN_SRC emacs-lisp (setq org-agenda-custom-commands - '(("T" "Todo list" + '(("T" "Today's list" ((agenda) - (todo "TODO" ((org-agenda-files `(,(agenda-files "todo.org") - ,(agenda-files "scheduled.org"))))))) - ("B" "backlog" - ((agenda) - (todo "TODO" ((org-agenda-files `(,(agenda-files "todo.org") - ,(agenda-files "backlog.org") - ,(agenda-files "scheduled.org"))))))))) + (todo "TODO" ((org-agenda-files `(,(agenda-files "today.org"))))))))) #+END_SRC ** Keybindings