[org/journal] Use ISO date for headlines

By default Emacs/Org-Journal uses a locale specific date which results
in different formats on different machines/operating systems
This commit is contained in:
Marcel Kapfer 2022-06-24 11:30:23 +02:00
parent 437ccb937b
commit b3ed3e5d5b
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 2 additions and 1 deletions

View File

@ -1243,7 +1243,8 @@ Until now I did not think that I needed to keep a (personal) journal. But since
:config (setq org-journal-dir "~/org/journal"
org-journal-file-type 'monthly
org-journal-find-file 'find-file
org-journal-file-format "%Y-%m-%d.org")
org-journal-file-format "%Y-%m-%d.org"
org-journal-date-format "%A, %Y-%m-%d")
:bind (("C-c j j" . 'org-journal-new-entry)
("C-c j s" . 'org-journal-new-scheduled-entry)
("C-c j o" . 'org-journal-open-current-journal-file)