From 78fa2a4070a73dec18c2b558b27a88217461c8b3 Mon Sep 17 00:00:00 2001 From: Peng Li Date: Tue, 28 Jun 2016 22:57:49 +0800 Subject: [PATCH] emacs - agenda view show today's task by default --- emacs.d/config.org | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/emacs.d/config.org b/emacs.d/config.org index 1f92827..1ab323a 100644 --- a/emacs.d/config.org +++ b/emacs.d/config.org @@ -672,11 +672,19 @@ All captured file which need next actions are stored in =refile.org=, (setq org-refile-allow-creating-parent-nodes (quote confirm)) #+END_SRC + *** Agenda Setup #+BEGIN_SRC emacs-lisp :tangle yes :results silent (setq org-agenda-files (quote ("~/org/plan.org" - "~/org/test.org"))) + "~/org/gtd.org" + "~/org/work.org"))) +#+END_SRC + +Only show today's view in agenda view by default + +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (setq org-agenda-span 'day) #+END_SRC ** Capture -- 2.11.0