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) (require 'org-crypt)
;; Make it possible to use inline tasks ;; Make it possible to use inline tasks
(require 'org-inlinetask) (require 'org-inlinetask)
;; Make it possible to use structure templates with < X TAB
(require 'org-tempo)
:custom :custom
(org-log-into-drawer t) (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-use-speed-commands t)
(org-hide-leading-stars t) (org-hide-leading-stars t)
(org-enforce-todo-dependencies t) (org-enforce-todo-dependencies t)
(org-enforce-todo-checkbox-dependencies t)
(org-catch-invisible-edits 'show) (org-catch-invisible-edits 'show)
(org-log-reschedule 'time) (org-log-reschedule 'time)
(org-log-redeadline 'note) (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)) \" ]\") ") (tags . " %i %-12:c %(concat \"[ \"(org-format-outline-path (org-get-outline-path)) \" ]\") ")
(timeline . " % s") (timeline . " % s")
(search . " %i %-12:c"))) (search . " %i %-12:c")))
(org-agenda-dim-blocked-tasks t)
:hook :hook
(ediff-select . f-ediff-org-unfold-tree-element) (ediff-select . f-ediff-org-unfold-tree-element)
(ediff-unselect . f-ediff-org-fold-tree) (ediff-unselect . f-ediff-org-fold-tree)