tweak(org): org-clock-history-length = 20

The default value of 5 is too conservative. 20 seems more reasonable,
without being overwhelming.
This commit is contained in:
Henrik Lissner 2021-09-28 22:42:29 +02:00
parent cdb59b0a3d
commit 3179c2a744

View file

@ -1068,7 +1068,9 @@ compelling reason, so..."
;; Resume when clocking into task with open clock
org-clock-in-resume t
;; Remove log if task was clocked for 0:00 (accidental clocking)
org-clock-out-remove-zero-time-clocks t)
org-clock-out-remove-zero-time-clocks t
;; The default value (5) is too conservative.
org-clock-history-length 20)
(add-hook 'kill-emacs-hook #'org-clock-save))