emacs-personal/modules/init-ready.el
2019-01-22 15:45:41 -05:00

19 lines
545 B
EmacsLisp

;;; init-ready.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;-------------------------
;; Emacs Ready :)
;;-------------------------
(add-hook 'emacs-startup-hook
(lambda ()
(message "Emacs ready in %s with %d garbage collections."
(format "%.2f seconds"
(float-time
(time-subtract after-init-time before-init-time)))
gcs-done)))
(provide 'init-ready)
;;; init-ready.el ends here