From 45de213890cc7e46e89e0c257a902b3341de1b35 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Thu, 5 Nov 2020 09:24:12 +0100 Subject: [PATCH] Update the Org configuration * Enable Org Tempo to use templates, and for easier use of structure templates * Enable checkbox dependency enforcing * Dim blocked tasks --- configuration.org | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration.org b/configuration.org index 4e5bfdc..5f85f3c 100644 --- a/configuration.org +++ b/configuration.org @@ -2975,6 +2975,8 @@ This is a big one; I use a lot of customisation here. (require 'org-crypt) ;; Make it possible to use inline tasks (require 'org-inlinetask) + ;; Make it possible to use structure templates with < X TAB + (require 'org-tempo) :custom (org-log-into-drawer t) @@ -2996,6 +2998,7 @@ This is a big one; I use a lot of customisation here. (org-use-speed-commands t) (org-hide-leading-stars t) (org-enforce-todo-dependencies t) + (org-enforce-todo-checkbox-dependencies t) (org-catch-invisible-edits 'show) (org-log-reschedule 'time) (org-log-redeadline 'note) @@ -3057,6 +3060,7 @@ This is a big one; I use a lot of customisation here. (tags . " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ") (timeline . " % s") (search . " %i %-12:c"))) + (org-agenda-dim-blocked-tasks t) :hook (ediff-select . f-ediff-org-unfold-tree-element) (ediff-unselect . f-ediff-org-fold-tree)