diff --git a/README.org b/README.org index b61704c..76bb494 100644 --- a/README.org +++ b/README.org @@ -584,6 +584,17 @@ Configure the default capture template for daily entries. :head "#+TITLE: %<%Y-%m-%d>\n"))) #+end_src +** Agenda + +Configure agenda sources. ++ Dailies ~~/.local/source/brain/daily/~ ++ Secrets ~~/.local/source/secrets/~ + +#+begin_src emacs-lisp +(setq org-agenda-files '("~/.local/source/secrets/" + "~/.local/source/brain/daily/")) +#+end_src + ** Blogging https://github.com/kaushalmodi/ox-hugo diff --git a/init.el b/init.el index f22307e..e7982b9 100644 --- a/init.el +++ b/init.el @@ -239,6 +239,9 @@ :file-name "daily/%<%Y-%m-%d>" :head "#+TITLE: %<%Y-%m-%d>\n"))) +(setq org-agenda-files '("~/.local/source/secrets/" + "~/.local/source/brain/daily/")) + (use-package ox-hugo :after ox)