[oni-org] Don't display blocked tasks in the agenda at all
I'm trying as much as I can to just only display what I can actually work on, and by definition anything that is blocked I cannot.
This commit is contained in:
parent
aac81cc7a8
commit
0401e08e65
1 changed files with 5 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
;; Author: Tom Willemse <tom@ryuslash.org>
|
||||
;; Keywords: local
|
||||
;; Version: 2022.1026.162123
|
||||
;; Version: 2022.1112.230650
|
||||
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-contrib org-bullets org-edna diminish all-the-icons olivetti form-feed)
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
|
@ -591,6 +591,10 @@ also move point to the start of the heading."
|
|||
(setq org-agenda-start-with-log-mode t)
|
||||
(setq org-agenda-window-setup 'only-window)
|
||||
|
||||
;; Discovered through
|
||||
;; https://github.com/novoid/dot-emacs/blob/23c28944f1991c636ea71ec7d5c3d266e6dbeb8a/config.org#general-org-mode-settings
|
||||
(setq org-agenda-dim-blocked-tasks 'invisible)
|
||||
|
||||
(setq org-agenda-custom-commands
|
||||
`(("t" . "Things to do")
|
||||
("tt" "Todo at this computer" tags-todo ,(format "@%s|@computer|@emacs/TODO" (system-name))
|
||||
|
|
Loading…
Reference in a new issue