diff options
author | Raul Benencia <id@rbenencia.name> | 2022-05-28 09:09:30 -0700 |
---|---|---|
committer | Raul Benencia <id@rbenencia.name> | 2022-05-28 09:09:30 -0700 |
commit | 0ef9506b4d6f44d1cc3bb88a862e8945ccca1ea2 (patch) | |
tree | 15d55287910a1f7641fc47b09a62a1fa1d453e9a /.emacs.local.d | |
parent | 064037f16997b0387e53e8c23f586db4cc5804fe (diff) |
emacs: org-journal-time-format
Diffstat (limited to '.emacs.local.d')
-rw-r--r-- | .emacs.local.d/config.el | 1 | ||||
-rw-r--r-- | .emacs.local.d/modes/org-journal.el | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.local.d/config.el b/.emacs.local.d/config.el index f7f5f84..573b304 100644 --- a/.emacs.local.d/config.el +++ b/.emacs.local.d/config.el @@ -4,6 +4,7 @@ my-org-journal-dir "~/org/journal/" my-org-journal-file-format "%Y.org" my-org-journal-time-prefix "* " + my-org-journal-time-format "" my-org-refile-path "~/refile.org" my-org-roam-directory "~/org/roam/" my-projectile-project-search-path '("~/src/") diff --git a/.emacs.local.d/modes/org-journal.el b/.emacs.local.d/modes/org-journal.el index f7e0864..e236249 100644 --- a/.emacs.local.d/modes/org-journal.el +++ b/.emacs.local.d/modes/org-journal.el @@ -8,5 +8,5 @@ (setq org-journal-dir my-org-journal-dir org-journal-file-type my-org-journal-file-type org-journal-time-prefix my-org-journal-time-prefix - org-journal-time-format "" + org-journal-time-format my-org-journal-time-format org-journal-date-format "%A, %d %B %Y")) |