summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon@szymonszukalski.com>2026-04-12 09:54:43 +1000
committerSzymon Szukalski <szymon@szymonszukalski.com>2026-04-12 09:54:43 +1000
commit0c2980f337ca6440507fb518f2649a921791130e (patch)
treee3cb50808cfeab7ecba2a5aa1b334ddf08f0082f /init.el
parentc755d3c6ae49680342e70b75eff5263a7d6d7c80 (diff)
Restrict Org drawers and log done states
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/init.el b/init.el
index cdd77b5..46dc111 100644
--- a/init.el
+++ b/init.el
@@ -157,8 +157,9 @@
org-agenda-window-setup 'only-window
org-startup-folded 'overview
org-cycle-hide-drawer-startup t
+ org-drawers '("PROPERTIES" "LOGBOOK")
org-todo-keywords
- '((sequence "TODO" "CLARIFY" "|" "DONE"))
+ '((sequence "TODO" "CLARIFY" "|" "DONE(d!)"))
org-use-speed-commands t
org-refile-use-outline-path 'file
org-outline-path-complete-in-steps nil
@@ -167,7 +168,7 @@
org-special-ctrl-a/e t
org-insert-heading-respect-content t
org-log-done 'time
- org-log-into-drawer t)
+ org-log-into-drawer "LOGBOOK")
:config
;; Keep capture modal in the current window.