I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB

  1. #+TITLE: Agenda
  2. #+AUTHOR: Christopher James Hayward
  3. #+EMAIL: chris@chrishayward.xyz
  4. #+PROPERTY: header-args:emacs-lisp :tangle agenda.el :comments org
  5. #+PROPERTY: header-args :results silent :eval no-export :comments org
  6. #+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil
  7. #+OPTIONS: skip:nil author:nil email:nil creator:nil timestamp:nil
  8. Agenda integrations for ~org-mode~.
  9. * Config
  10. Integrate the ~org-agenda~ with the ~org-roam~ database, and the rest of the ~org-mode~ contexts throughout the repository:
  11. #+begin_src emacs-lisp
  12. (setq org-agenda-files '("~/.emacs.d/"
  13. "~/.emacs.d/docs/"
  14. "~/.emacs.d/docs/courses/"
  15. "~/.emacs.d/docs/daily/"
  16. "~/.emacs.d/docs/notes/"
  17. "~/.emacs.d/docs/posts/"
  18. "~/.emacs.d/docs/slides/"
  19. "~/.emacs.d/hosts/"
  20. "~/.emacs.d/modules/"))
  21. #+end_src
  22. * Shortcuts
  23. Open an agenda buffer with =SPC a=:
  24. #+begin_src emacs-lisp
  25. (dotfiles/leader
  26. "a" '(org-agenda :which-key "Agenda"))
  27. #+end_src
  28. * Footnotes