summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-10-08 17:37:57 -0700
committerFranck Cuny <franck@fcuny.net>2021-10-08 17:37:57 -0700
commit3063b9ca754a0370074b40cb8dd61af412a6fc4c (patch)
treec7d64d996d92d109e0f3ef1e609592011f2d0d60 /emacs/custom
parentemacs: add "git" section to ibuffer (diff)
downloademacs.d-3063b9ca754a0370074b40cb8dd61af412a6fc4c.tar.gz
emacs: updates for org-configuration
Diffstat (limited to 'emacs/custom')
-rw-r--r--emacs/custom/fcuny-org.el10
1 files changed, 10 insertions, 0 deletions
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))))