diff --git a/config.org b/config.org index 45f9973..34e8a76 100644 --- a/config.org +++ b/config.org @@ -436,6 +436,30 @@ (setq org-agenda-include-diary t) #+end_src + Though I don't like the time grid being on by default. + + #+begin_src emacs-lisp + (setq org-agenda-use-time-grid nil) + #+end_src + + I primarily use the TODO list to keep track of un-scheduled tasks, + so I don't want those displayed in there: + + #+begin_src emacs-lisp + (setq org-agenda-todo-ignore-scheduled t) + #+end_src + + Finally, I want a keybinding for the weekly agenda and global TODO + list agenda view: + + #+begin_src emacs-lisp + (defun org-weekly-agenda-and-todo-list () + (interactive) + (org-agenda nil "n")) + + (global-set-key (kbd "C-c a") 'org-weekly-agenda-and-todo-list) + #+end_src + ** Habits Habit tracking requires the habits org module to be loaded. This is done by adding the symbol ~'habits~ to [[help:org-modules][org-modules]], if it's not in