Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emacs Org-Mode: Customize date picker layout

I can insert a date in Org-Mode by hitting Ctrl-c, .. This brings up the nice date picker that allows me to choose a date from the calendar.

By default date picker starts each week on a Sunday. I'm more used to seeing a week start on a Monday.

I know it's a minor thing, but is it possible to customize the org-mode date picker to display weeks starting on a Monday rather than on a Sunday? I've searched but I can't seem to find any mention of whether this is possible or not.

like image 925
FixMaker Avatar asked Jul 30 '13 09:07

FixMaker


1 Answers

This should do the job:

(setq calendar-week-start-day 1)

org-mode uses calendar; that's why searching for a configuration param in org-mode did not work.

like image 78
juanleon Avatar answered Oct 27 '22 15:10

juanleon