From 31f8aedbd90db11cec5e4171a3732c03f9b2c53d Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:36 +0000 Subject: [PATCH] Tweak agenda a little --- config.org | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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