From 6d39c323c5da7195a188ba9e05778ba2880d61e7 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 16 Jun 2017 02:31:37 +0200 Subject: [PATCH] Hide mode-line during startup Produces the appearance of a smoother start-up, with fewer UI elements transforming as it reads the config. --- core/core-ui.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/core-ui.el b/core/core-ui.el index 40d972ff9..27ab1ac3d 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -130,6 +130,9 @@ 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)