#+TITLE: Agenda #+AUTHOR: Christopher James Hayward #+EMAIL: chris@chrishayward.xyz #+PROPERTY: header-args:emacs-lisp :tangle agenda.el :comments org #+PROPERTY: header-args :results silent :eval no-export :comments org #+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil #+OPTIONS: skip:nil author:nil email:nil creator:nil timestamp:nil Agenda integrations for ~org-mode~. * Config Integrate the ~org-agenda~ with the ~org-roam~ database, and the rest of the ~org-mode~ contexts throughout the repository: #+begin_src emacs-lisp (setq org-agenda-files '("~/.emacs.d/" "~/.emacs.d/docs/" "~/.emacs.d/docs/courses/" "~/.emacs.d/docs/daily/" "~/.emacs.d/docs/notes/" "~/.emacs.d/docs/posts/" "~/.emacs.d/docs/slides/" "~/.emacs.d/hosts/" "~/.emacs.d/modules/")) #+end_src * Shortcuts Open an agenda buffer with =SPC a=: #+begin_src emacs-lisp (dotfiles/leader "a" '(org-agenda :which-key "Agenda")) #+end_src * Footnotes