aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-ready.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/init-ready.el')
-rw-r--r--modules/init-ready.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/init-ready.el b/modules/init-ready.el
new file mode 100644
index 0000000..dba8a0f
--- /dev/null
+++ b/modules/init-ready.el
@@ -0,0 +1,18 @@
+;;; 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