diff --git a/README.org b/README.org index fcff5db..8851840 100644 --- a/README.org +++ b/README.org @@ -703,6 +703,7 @@ Open an agenda buffer with =SPC a=. :config (setq org-journal-dir (concat dotfiles/home "/daily/") org-journal-file-type 'daily + org-journal-file-format "%Y-%m-%d.org" org-journal-enable-agenda-integration t org-icalendar-store-UID t org-icalendar-include-todo "all" diff --git a/daily/2021-02-01.org b/daily/2021-02-01.org new file mode 100644 index 0000000..b832d73 --- /dev/null +++ b/daily/2021-02-01.org @@ -0,0 +1,2 @@ +* Monday, 02/01/21 +** 00:44 Finished implementing ~org-journal~ diff --git a/daily/20210201 b/daily/20210201 deleted file mode 100644 index 988b038..0000000 --- a/daily/20210201 +++ /dev/null @@ -1,2 +0,0 @@ -* Monday, 02/01/21 -** 00:39 Finished journal implementation:w diff --git a/init.el b/init.el index f8743b7..d407efa 100644 --- a/init.el +++ b/init.el @@ -13,7 +13,7 @@ ;; If there is more than one, they won't work right. '(org-agenda-files (quote - ("/home/chris/.local/source/secrets/org/birthdays.org" "/home/chris/.local/source/secrets/org/courses.org" "/home/chris/.local/source/secrets/org/holidays.org" "/home/chris/.local/source/dotfiles/daily/20210201")))) + ("/home/chris/.local/source/secrets/org/birthdays.org" "/home/chris/.local/source/secrets/org/courses.org" "/home/chris/.local/source/secrets/org/holidays.org" "/home/chris/.local/source/dotfiles/daily/2021-02-01.org")))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/modules/writing.el b/modules/writing.el index f397b8c..fca5486 100644 --- a/modules/writing.el +++ b/modules/writing.el @@ -51,6 +51,7 @@ :config (setq org-journal-dir (concat dotfiles/home "/daily/") org-journal-file-type 'daily + org-journal-file-format "%Y-%m-%d.org" org-journal-enable-agenda-integration t org-icalendar-store-UID t org-icalendar-include-todo "all"