Open dylnmc opened 4 years ago
To be honest, if you want to change the Emacs color theme to something different, you need to restart Emacs. This should not be necessary, but the reality is that it is not.
Therefore, all you need to do in init.el is to install and load only one theme.
I am have used emacs for three days. I am not sure if my issue is what I think it is, but I am not able to load a theme without enabling it when I use
use-package
macro.Example:
(use-package chocolate-theme)
. This enables thechocolate
theme for some reason. I don't want that.Longer example:
I have a few themes. As you can see, I passed
t
as the third parameter toload-theme
for all of them except the last one, which means that all of the top themes should not get enabled, but the last theme should. Based on how use-package operates, this does not happen. Instead, they all get applied on top of each other, and I don' t want taht. They also don't get stored intocustom-enabled-themes
, which is weird because they're enabled. Can you please not auto-enable themes with use-package?Or is the issue something on my end? I tried adding
:defer t
,:defer 1
, and a few other things. This causes some themes to enter infinite recursion interestingly.