You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
290 B
11 lines
290 B
;; Startup time
|
|
(defun efs/display-startup-time ()
|
|
(message
|
|
"Emacs loaded in %s with %d garbage collections."
|
|
(format
|
|
"%.2f seconds"
|
|
(float-time
|
|
(time-subtract after-init-time before-init-time)))
|
|
gcs-done))
|
|
|
|
(add-hook 'emacs-startup-hook #'efs/display-startup-time)
|