From 535112b55abc2904d7cd7b9e54bf509e4ddc51e7 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 28 Oct 2017 14:34:05 +0200 Subject: [PATCH] =?UTF-8?q?[Init]=20Enable=20=E2=80=98smart-mode-line-dark?= =?UTF-8?q?=E2=80=99=20explicitly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Don’t know why it’s not done automatically. Maybe settings it in custom.el is too early? --- init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 54c664d..5f461f9 100644 --- a/init.el +++ b/init.el @@ -99,7 +99,11 @@ which-key-mode projectile-mode)) (ignore-errors ; don’t barf if mode cannot be loaded - (funcall mode +1))) + (funcall mode +1))) + + ;; Theming (workaround, as this does not seem to be loaded from custom.el …) + + (load-theme 'smart-mode-line-dark) ;; Global Hooks