[Init] Short messages for when main initialization takes place

This commit is contained in:
Daniel - 2018-11-03 16:06:05 +01:00
parent 53bab010e1
commit 9b8388d30f
Signed by: dbo
GPG Key ID: 4F63DB96D45AA9C6
1 changed files with 4 additions and 0 deletions

View File

@ -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)