diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/init.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 3511602..b73a7fa 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -287,4 +287,7 @@ the buffer without saving it." ;;; Postamble -(message (emacs-init-time "Emacs initialized in %.2f seconds")) +(add-hook 'after-init-hook + (defun mm-echo-init-time () + (message (emacs-init-time "Emacs initialized in %.2f seconds"))) + 100) |