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, 0 insertions, 18 deletions
diff --git a/modules/init-ready.el b/modules/init-ready.el
deleted file mode 100644
index dba8a0f..0000000
--- a/modules/init-ready.el
+++ /dev/null
@@ -1,18 +0,0 @@
-;;; 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