From 3063b9ca754a0370074b40cb8dd61af412a6fc4c Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 8 Oct 2021 17:37:57 -0700 Subject: emacs: updates for org-configuration --- emacs/custom/fcuny-org.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/emacs/custom/fcuny-org.el b/emacs/custom/fcuny-org.el index 0d07ac2..1937652 100644 --- a/emacs/custom/fcuny-org.el +++ b/emacs/custom/fcuny-org.el @@ -66,6 +66,7 @@ ;; log the time of completion (org-log-done 'time) + (org-log-into-drawer t) (org-startup-indented t) @@ -84,12 +85,21 @@ (org-default-priority ?C) ;; Ensures unset tasks have low priority. ;; agenda related + (org-agenda-span 14) + (org-agenda-show-all-dates t) (calendar-week-start-day 1) ;; org-mode uses calendar for the date picker, and I want this to start on Monday (org-agenda-start-on-weekday 1) ;; this is specific to org-agenda (org-agenda-files `(,fcuny/org-notes-file ,fcuny/org-tasks-file ,fcuny/org-journal-file)) + (org-agenda-use-time-grid t) + (org-agenda-prefix-format + '((agenda . " %i %-12:c%?-12t% s") + (todo . " %i %-12:c") + (tags . " %i %-12:c") + (search . " %i %-12:c"))) + ;; refile (org-refile-use-cache nil) (org-refile-targets '((org-agenda-files . (:maxlevel . 3)))) -- cgit 1.4.1