org-mode-locale-timestamps-dates.org 1.1 KB

About

Org mode inserts timestamps or dates with an abbreviated weekday name. This weekday name is written in some language, that depends on the locale.

Configuration

To make org mode always use English weekday names use the following snippet:

;; locale for timestamps/dates (setq calendar-week-start-day 1 calendar-day-name-array ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"] calendar-month-name-array ["January" "February" "March" "April" "May" "June" "July" "August" "September" "October" "November" "December"])

;; locale for timestamps/dates (set-locale-environment "en_US.UTF-8")