Fix the path for loading solarized.
Once all extensions were moved from "extensions" to "local", spacemacs was no longer able to find the solarized themes. Thanks to @TheBB for helping narrow this down! Closes #2628
This commit is contained in:
parent
ebe4540752
commit
ba63987030
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ package name does not match theme name + `-theme' suffix.")
|
|||
((or (eq 'solarized-light theme)
|
||||
(eq 'solarized-dark theme))
|
||||
(add-to-list 'load-path (concat spacemacs-directory
|
||||
"extensions/solarized-theme/"))
|
||||
"local/solarized-theme/"))
|
||||
(require 'solarized)
|
||||
(deftheme solarized-dark "The dark variant of the Solarized colour theme")
|
||||
(deftheme solarized-light "The light variant of the Solarized colour theme"))
|
||||
|
|
Reference in a new issue