Show message «Done! emacs»

This commit is contained in:
Jesús 2018-11-10 20:19:09 -05:00
parent a097edaebc
commit 9bcab5d262
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
2 changed files with 14 additions and 0 deletions

View File

@ -61,6 +61,7 @@
(require 'init-rainbow)
(require 'init-web-mode)
(require 'init-mmm-mode)
(require 'init-ready)
;;; Loads custom file
(when (file-exists-p custom-file)

13
lisp/init-ready.el Normal file
View File

@ -0,0 +1,13 @@
;;-------------------------
;; Emacs Ready :)
;;-------------------------
(add-hook 'emacs-startup-hook
(lambda ()
(message "Emacs cargado en %s y listo para ser usado."
(format "%.2f segundos"
(float-time
(time-subtract after-init-time before-init-time)))
gcs-done)))
(provide 'init-ready)