From cab2a02eebaae04fef4b91180bed758ad092f21c Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 23 Jun 2022 17:23:00 +0200 Subject: [PATCH] [Org/Journal] Use ISO date as filename for org-journal files --- config.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 223e4c4..38c33c1 100644 --- a/config.org +++ b/config.org @@ -1242,7 +1242,8 @@ Until now I did not think that I needed to keep a (personal) journal. But since (use-package org-journal :config (setq org-journal-dir "~/org/journal" org-journal-file-type 'monthly - org-journal-find-file 'find-file) + org-journal-find-file 'find-file + org-journal-file-format "%Y-%m-%d.org") :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)