From a92df4d5b43ef4ddbef6f18be321a2601b44a3ce Mon Sep 17 00:00:00 2001 From: Random936 Date: Thu, 28 Sep 2023 12:51:11 -0700 Subject: [PATCH] Added custom timestamp format to org config --- .emacs.d/config.org | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index aa52f33..81fc5d4 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -536,9 +536,15 @@ This installs the org package and creates a setup function to enable/disable cer (setq org-ellipsis " ▾" org-hide-emphasis-markers t org-src-preserve-indentation t + + ; Default export configuration org-export-with-toc nil org-export-with-section-numbers nil - org-export-with-sub-superscripts nil)) + org-export-with-sub-superscripts nil + + ; Org agenda timestamp formatting + org-display-custom-times t + org-time-stamp-custom-formats '("%m-%d-%y %a" . "%m-%d-%y %a %I:%M %p"))) #+end_src ** Org Agenda