diff options
| author | Aaron LI <aaronly.me@outlook.com> | 2017-03-14 09:13:51 +0800 |
|---|---|---|
| committer | Aaron LI <aaronly.me@outlook.com> | 2017-03-14 09:13:51 +0800 |
| commit | 502ba0fd01efb17e52281b4bce8c5c3e97bc5168 (patch) | |
| tree | e9894c3ea1714ed28b09cb5dcd68c5f6b01c569a /_spacemacs.d/config | |
| parent | 983d66b40e34faee7a0cd89bbd00bb0aa7a31491 (diff) | |
| download | dotfiles-502ba0fd01efb17e52281b4bce8c5c3e97bc5168.tar.bz2 | |
spacemacs/org: Change agenda overview span
Diffstat (limited to '_spacemacs.d/config')
| -rw-r--r-- | _spacemacs.d/config/my-org.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/_spacemacs.d/config/my-org.el b/_spacemacs.d/config/my-org.el index f3bec12..e16f922 100644 --- a/_spacemacs.d/config/my-org.el +++ b/_spacemacs.d/config/my-org.el @@ -253,8 +253,10 @@ ;; Any task with a subtask using a todo keyword is a project. ;; Projects are "stuck" if they have no subtask with a `NEXT' todo keyword. - ;; Only show today's agenda by default - (setq org-agenda-span 'day) + ;; Start the agenda overview on the current day + (setq org-agenda-start-on-weekday nil) + ;; Show week's agenda (default) + (setq org-agenda-span 'week) ;; Disable the default stuck projects agenda view (setq org-stuck-projects '("" nil nil "")) @@ -271,6 +273,9 @@ (ditaa . t) )) + ;; Enable `org-indent-mode' by default at startup + (setq org-startup-indented t) + ;; Set the bullet symbols for `org-bullets' (setq org-bullets-bullet-list '("♠" "♥" "♣" "♦")) ;; "SHoCkeD" ordering |
