theming: encapsulate theming config in init function

This commit is contained in:
syl20bnr 2016-05-27 07:24:23 -04:00
parent 584cae8d6f
commit 2a74c60fde
2 changed files with 19 additions and 6 deletions

View File

@ -58,9 +58,3 @@ or the symbol `all'.")
org-level-7
org-level-8)
"List of header faces.")
;; Apply theme customizations after any call to load-theme
(advice-add 'load-theme :after 'spacemacs//theming)
;; Apply the initial customizations now, because load-theme has already been called
(spacemacs//theming spacemacs--cur-theme)

View File

@ -0,0 +1,19 @@
;;; packages.el --- Theming Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst theming-packages
'((theming :location local)))
(defun theming/init-theming ()
;; Apply theme customizations after any call to load-theme
(advice-add 'load-theme :after 'spacemacs//theming)
;; Apply the initial customizations now, because load-theme has already been called
(spacemacs//theming spacemacs--cur-theme))