19 lines
545 B
EmacsLisp
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
|