From 9b8388d30fd4335f60dd7110e6c826906c405156 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 3 Nov 2018 16:06:05 +0100 Subject: [PATCH] [Init] Short messages for when main initialization takes place --- init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.el b/init.el index 483c3e7..2416cbb 100644 --- a/init.el +++ b/init.el @@ -65,6 +65,8 @@ (defun db/run-init () "Run main initialization after everything is set up." + (message "Running main initialization ... done") + ;; Load customizations (when (file-exists-p custom-file) @@ -267,6 +269,8 @@ (unless (server-running-p) (server-start)) + (message "Running main initialization ... done") + t) (add-hook 'after-init-hook #'db/run-init)