summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-06-29 09:32:43 +0000
committernoa@gaiwan.org2024-06-29 09:32:43 +0000
commit1feff04a169a0442aa6006825412426214ebbe57 (patch)
treefa89276b546bd5cb0afd9ec0b8403e1c00e7936c
parent85eb0551a90cc75427221a4671f7f86724c7a6bc (diff)
Add commented org-time-stamp-formats definition
-rw-r--r--config.org57
1 files changed, 29 insertions, 28 deletions
diff --git a/config.org b/config.org
index 3edae50..3b6127d 100644
--- a/config.org
+++ b/config.org
@@ -546,34 +546,35 @@ If we enable this, emphasis markers will be hidden for a more word processor fee
 #+end_src
 
 #+begin_src elisp
-(setopt org-startup-with-inline-images t)
-(setopt org-image-actual-width '(300))
-(setopt org-auto-align-tags nil)
-(setopt org-tags-column 0)
-(setopt org-catch-invisible-edits 'show-and-error)
-(setopt org-special-ctrl-a/e t)
-(setopt org-insert-heading-respect-content t)
-(setopt org-ellipsis "…")
-(setopt org-display-custom-times t)
-(setopt org-time-stamp-custom-formats '("%Y-%m-%d" . "%Y-%m-%d %H:%M"))
-(setopt org-extend-today-until 4)
-(setopt org-adapt-indentation nil)
-(setopt org-log-done 'time)
-(setopt org-return-follows-link t)
-(setopt org-agenda-files '("~/data/notes/notes.org"))
-(setopt org-capture-bookmark nil)
-(setopt org-capture-templates '(("j" "Journal" entry (file+olp+datetree "~/data/notes/notes.org") "* %?\n" :empty-lines 1)
-                                ("w" "Website" entry (file+olp+datetree "~/data/notes/notes.org") "* %a\n%?\n" :empty-lines 1)
-                                ("c" "Contact" entry (file+olp+datetree "~/data/notes/notes.org")
-                                 "* %^{Name}
-:PROPERTIES:
-:ADDRESS: %^{Address}
-:BIRTHDAY: %^{yyyy-mm-dd}
-:EMAIL: %^{EMAIL}p
-:NOTE: %^{NOTE}
-:END:"
-                                 :empty-lines 1)
-                                ))
+  (setopt org-startup-with-inline-images t)
+  (setopt org-image-actual-width '(300))
+  (setopt org-auto-align-tags nil)
+  (setopt org-tags-column 0)
+  (setopt org-catch-invisible-edits 'show-and-error)
+  (setopt org-special-ctrl-a/e t)
+  (setopt org-insert-heading-respect-content t)
+  (setopt org-ellipsis "…")
+  (setopt org-display-custom-times t)
+  (setopt org-time-stamp-custom-formats '("%Y-%m-%d" . "%Y-%m-%d %H:%M"))
+  ;; (setopt org-time-stamp-formats '("<%Y-%m-%d>" . "<%Y-%m-%d %H:%M>"))
+  (setopt org-extend-today-until 4)
+  (setopt org-adapt-indentation nil)
+  (setopt org-log-done 'time)
+  (setopt org-return-follows-link t)
+  (setopt org-agenda-files '("~/data/notes/notes.org"))
+  (setopt org-capture-bookmark nil)
+  (setopt org-capture-templates '(("j" "Journal" entry (file+olp+datetree "~/data/notes/notes.org") "* %?\n" :empty-lines 1)
+                                  ("w" "Website" entry (file+olp+datetree "~/data/notes/notes.org") "* %a\n%?\n" :empty-lines 1)
+                                  ("c" "Contact" entry (file+olp+datetree "~/data/notes/notes.org")
+                                   "* %^{Name}
+  :PROPERTIES:
+  :ADDRESS: %^{Address}
+  :BIRTHDAY: %^{yyyy-mm-dd}
+  :EMAIL: %^{EMAIL}p
+  :NOTE: %^{NOTE}
+  :END:"
+                                   :empty-lines 1)
+                                  ))
 #+end_src
 
 #+begin_src elisp