From c3d344cb8c30fb7c2e9a304df3e10ca60a2b7be6 Mon Sep 17 00:00:00 2001 From: Eivind Fonn Date: Fri, 16 Jun 2017 09:30:32 +0200 Subject: [PATCH] =?UTF-8?q?Allow=20=E2=80=9Cdefault=E2=80=9D=20theme=20to?= =?UTF-8?q?=20load=20properly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-themes-support.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core-themes-support.el b/core/core-themes-support.el index df7c86488..616cee910 100644 --- a/core/core-themes-support.el +++ b/core/core-themes-support.el @@ -239,7 +239,8 @@ THEME." (package-activate pkg-name)))) (when disable (mapc 'disable-theme custom-enabled-themes)) - (load-theme theme-name t) + (unless (eq 'default theme-name) + (load-theme theme-name t)) (unless (display-graphic-p) (eval `(spacemacs|do-after-display-system-init (load-theme ',theme-name t))))