diff options
| -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 | 
