aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-ready.el
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-05-14 12:57:26 -0500
committerJesús <heckyel@hyperbola.info>2019-05-14 12:57:26 -0500
commita3b882775d37e73d36c16074a05f5d27cb18365b (patch)
treef1bacdecc95ef91728d33440f2f7976ce8a30f75 /modules/init-ready.el
parentf139b013c39b1093cf753ab9adc2ee80bdea2a5d (diff)
downloademacs-personal-a3b882775d37e73d36c16074a05f5d27cb18365b.tar.lz
emacs-personal-a3b882775d37e73d36c16074a05f5d27cb18365b.tar.xz
emacs-personal-a3b882775d37e73d36c16074a05f5d27cb18365b.zip
code-cleanup
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