diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-12-09 10:46:34 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-12-09 10:46:34 -0800 |
commit | f1fc50b8769c26e16034f64e190c6ae707154bc5 (patch) | |
tree | 356da2a8f49bd8b5eace5124110cbbc74f2c489a /emacs | |
parent | [org] Add functions to refile to datetree (diff) | |
download | emacs.d-f1fc50b8769c26e16034f64e190c6ae707154bc5.tar.gz |
[org] The week starts on Monday
Configure the calendar to start the week on Monday instead of Sunday.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-org.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-org.el b/emacs.d/custom/fcuny-org.el index a4bd7a8..7696936 100644 --- a/emacs.d/custom/fcuny-org.el +++ b/emacs.d/custom/fcuny-org.el @@ -67,7 +67,8 @@ _g n_: go to notes (sequence "SOMEDAY" "|" "CANCELED(c)"))) ;; agenda related - (org-agenda-start-on-weekday 1) + (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 `(,org-default-tasks-file ,org-default-work-tasks-file)) |