diff --git a/core/core-ui.el b/core/core-ui.el index b576e5a75..3a6713fcd 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -130,8 +130,6 @@ mode is detected.") ;; Bootstrap ;; -;; smoother startup when mode-line is invisible -(setq mode-line-format nil) ;; Prompts the user for confirmation when deleting a non-empty frame (define-key global-map [remap delete-frame] #'doom/delete-frame) diff --git a/core/core.el b/core/core.el index 7b72c15f1..ed15cc8b6 100644 --- a/core/core.el +++ b/core/core.el @@ -116,13 +116,14 @@ melodramatic ex-vimmer disappointed with the text-editor status quo." (setq custom-file (concat doom-etc-dir "custom.el")) (load custom-file t t) -;; be quiet at startup; don't load anything unnecessary +;; be quiet at startup; don't load or display anything unnecessary (advice-add #'display-startup-echo-area-message :override #'ignore) (setq inhibit-startup-message t inhibit-startup-echo-area-message user-login-name inhibit-default-init t initial-major-mode 'fundamental-mode - initial-scratch-message nil) + initial-scratch-message nil + mode-line-format nil) ;; Custom init hooks; clearer than `after-init-hook', `emacs-startup-hook', and ;; `window-setup-hook'.