From 07b03430226317963f39b7c7d6eff915b83cf71b Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 14 Jan 2021 11:26:00 -0500 Subject: [PATCH] Add agenda sources --- README.org | 11 +++++++++++ init.el | 3 +++ 2 files changed, 14 insertions(+) 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)