From 8ef0d4899171c9428e10d52bb03b033c33bd0f7b Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Tue, 28 Jul 2015 07:51:00 +0300 Subject: [PATCH] Use the current theme's faces for smart-mode-line Auto-detecting faces is not bad, but nothing beats manually tuned theme faces. --- core/prelude-ui.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/prelude-ui.el b/core/prelude-ui.el index e8efd66..e9a4b67 100644 --- a/core/prelude-ui.el +++ b/core/prelude-ui.el @@ -73,7 +73,8 @@ (require 'smart-mode-line) (setq sml/no-confirm-load-theme t) -(setq sml/theme 'respectful) +;; delegate theming to the currently active theme +(setq sml/theme nil) (add-hook 'after-init-hook #'sml/setup) (provide 'prelude-ui)