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