Home / Emacs / Emacs / Initialization (init.el)
Debugging performance
;; Enable to debug startup performance.
(when nil
(defun my-load-log (file)
(message "Loaded file: %s" file))
(add-hook 'after-load-functions #'my-load-log))
Home / Emacs / Emacs / Initialization (init.el)
;; Enable to debug startup performance.
(when nil
(defun my-load-log (file)
(message "Loaded file: %s" file))
(add-hook 'after-load-functions #'my-load-log))