diff --git a/README.org b/README.org index 76bb494..5d8cdbe 100644 --- a/README.org +++ b/README.org @@ -595,6 +595,13 @@ Configure agenda sources. "~/.local/source/brain/daily/")) #+end_src +Open an agenda buffer with =SPC a=. + +#+begin_src emacs-lisp +(dotfiles/leader + "a" '(org-agenda :which-key "Agenda")) +#+end_src + ** Blogging https://github.com/kaushalmodi/ox-hugo diff --git a/init.el b/init.el index e7982b9..eb7661e 100644 --- a/init.el +++ b/init.el @@ -242,6 +242,9 @@ (setq org-agenda-files '("~/.local/source/secrets/" "~/.local/source/brain/daily/")) +(dotfiles/leader + "a" '(org-agenda :which-key "Agenda")) + (use-package ox-hugo :after ox)