Tweak agenda a little

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:36 +00:00
parent 1645483ca2
commit 31f8aedbd9

View File

@ -436,6 +436,30 @@
(setq org-agenda-include-diary t) (setq org-agenda-include-diary t)
#+end_src #+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 ** Habits
Habit tracking requires the habits org module to be loaded. This is 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 done by adding the symbol ~'habits~ to [[help:org-modules][org-modules]], if it's not in