Update the Org configuration

* Enable Org Tempo to use templates, and for easier use of structure templates
* Enable checkbox dependency enforcing
* Dim blocked tasks
This commit is contained in:
Gergely Polonkai 2020-11-05 09:24:12 +01:00
parent fb1f6bb3a5
commit 45de213890
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 4 additions and 0 deletions

View File

@ -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)