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