From f3b42a73b376c468b0613a41e52f2b64eda492de Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 19 Jun 2018 19:18:27 +0200 Subject: [PATCH] Silence early-init.el load at startup --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index ac0ca2237..0b3b905e0 100644 --- a/init.el +++ b/init.el @@ -28,6 +28,7 @@ ;;; License: MIT (unless (boundp 'early-init-file) - (load (concat (file-name-directory load-file-name) "early-init"))) + (load (concat (file-name-directory load-file-name) "early-init") + nil t)) (require 'core (concat user-emacs-directory "core/core"))