diff options
author | noa@gaiwan.org | 2024-06-18 20:42:04 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-06-18 20:42:04 +0000 |
commit | 2bec8ba46383685c28c55bd7969ee696aa31a528 (patch) | |
tree | a7caeefb222d807d2fdc7df0fad0eaea459c5344 | |
parent | 203f2238a3a53076948938225ebcd2945e6cc1d2 (diff) |
Better org agenda settings
-rw-r--r-- | emacs/init.el | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/emacs/init.el b/emacs/init.el index b8cd99e..523c947 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -319,12 +319,22 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." :empty-lines 1) )) -(setopt org-agenda-block-separator ?─) +(setopt org-agenda-block-separator nil) +(setopt org-agenda-include-deadlines t) +;; Always start the weekly agenda for a week from today +(setopt org-agenda-start-on-weekday nil) +;; Show week of agenda by default +(setopt org-agenda-span 'week) +(setopt org-agenda-prefix-format '((agenda . " %i %?-12t% s") + (todo . " %i ") + (tags . " %i ") + (search . " %i "))) (setopt org-agenda-time-grid '((daily today require-timed) (800 1000 1200 1400 1600 1800 2000) - " ┄┄┄┄┄ " "┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄")) + " " " ")) (setopt org-agenda-current-time-string - "◀── now ─────────────────────────────────────────────────") + "◀ you are here") +(setopt org-support-shift-select 'always) ;; Make org html export more pleasant by default (setopt org-export-with-smart-quotes t) |