После клонирования кодов
emacs.d / init-org.el по адресу 9bb862b3d5f95d66506693cf1ebc685bb79d1080 · purcell / emacs.d
в персональную конфигурацию,
;;; Org clock
;; Save the running clock and all clock history when exiting Emacs, load it on startup
(after-load 'org
(org-clock-persistence-insinuate))
(setq org-clock-persist t)
(setq org-clock-in-resume t)
;; Save clock data and notes in the LOGBOOK drawer
(setq org-clock-into-drawer t)
;; Save state changes in the LOGBOOK drawer
(setq org-log-into-drawer t)
;; Removes clocked tasks with 0:00 duration
(setq org-clock-out-remove-zero-time-clocks t)
;; Show clock sums as hours and minutes, not "n days" etc.
(setq org-time-clocksum-format
'(:hours "%d" :require-hours t :minutes ":%02d" :require-minutes t))
Это подсказывает, что `определение функции символа является недействительным: after-load '
Поиск по ключевому слову' afterf-load`, оно возвращает with-eval-after-load Хуки для загрузки -Справочное руководство по GNU Emacs Lisp
Является ли постнагрузка персональной функцией?