diff options
| author | Szymon Szukalski <szymon@szymonszukalski.com> | 2026-04-12 09:54:43 +1000 |
|---|---|---|
| committer | Szymon Szukalski <szymon@szymonszukalski.com> | 2026-04-12 09:54:43 +1000 |
| commit | 0c2980f337ca6440507fb518f2649a921791130e (patch) | |
| tree | e3cb50808cfeab7ecba2a5aa1b334ddf08f0082f /init.el | |
| parent | c755d3c6ae49680342e70b75eff5263a7d6d7c80 (diff) | |
Restrict Org drawers and log done states
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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. |
