From 0c2980f337ca6440507fb518f2649a921791130e Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Sun, 12 Apr 2026 09:54:43 +1000 Subject: Restrict Org drawers and log done states --- init.el | 5 +++-- 1 file 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. -- cgit v1.2.3