-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Howto combine with customized spacemacs-theme? #12
Comments
Thanks for the ticket! They work quite well for me, but I haven't upgraded spacemacs theme in a while :) So I'll need to look more into it. BTW, why do you use |
cool, your emacs config is already inspiring me :) Yes, there are several lines in my files which could be simplified by the use-package interface, also things like hooks. My emacs code needs continuous refactoring ;) |
for ref: had an issue with (use-package heaven-and-hell
;; ...
:config
(custom-set-variables `(custom-enabled-themes (quote (scicpp-dark scicpp-light)))) ;; set your custom themes here
) |
Solved. I use |
Maybe you can help. I would like to combine heaven-and-hell with spacemacs-theme. Unfortunately, I could not get it to work yet. There is also an open spacemacs-theme issue. If needed, there is a minimal example:
UPDATE-1: Do NOT use
-l emacs_config/init.el
, this messes up emacs init process.There are actually three commits, where only the third commit tests the combination with heaven-and-hell theme switcher.
Issue:
Only the first theme colors work, but only after you toggle. When you toggle back, then only the default color setup of spacemacs-theme is loaded without custom color definitions applied. When you run load-theme first, then toggling is not needed, but the second theme is still not working.
Code:
From init.el
From test-space-theme.el
This association list is applied via cl-loop in spacemacs-common.el.
UPDATE-2: Using
setq
instead ofcustom-set-variables
finally resolved this issue. Minimal example branch is here.The text was updated successfully, but these errors were encountered: