From 0401e08e65e19aec4573894a5bf0dfd2fbb78b19 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 13 Nov 2022 17:00:43 -0800 Subject: [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. --- oni-org/oni-org.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el index 05f924a..7f55b34 100644 --- a/oni-org/oni-org.el +++ b/oni-org/oni-org.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; 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)) -- cgit v1.2.3-54-g00ecf