Closed hrqmonteiro closed 2 weeks ago
The end-of-file
error is caused by the fact that everforest.el
has a hanging ;;;###autoload
cookie with everything under it commented out, so Emacs' autoload scanner fails to find anything to autoload, thus throwing an error. This should be fixed upstream.
You can get around it in Doom by simply omitting the everforest.el
file (since there's nothing useful in it anyway), but then you must avoid trying to loading it (as you would've with (use-package! everforest ...)
). E.g.
;;; in $DOOMDIR/packages.el
(package! everforest
:recipe (:repo "https://git.sr.ht/~theorytoe/everforest-theme"
:files ("*.el" (:exclude "everforest.el"))))
;;; in $DOOMDIR/config.el
(load-theme 'everforest-hard-dark t)
Side note: you said you put use-package!
and load-theme
call in your $DOOMDIR/packages.el
? Don't do this. They don't belong there and will cause errors. They belong in $DOOMDIR/config.el
.
In any case, this is not a Doom or doomemacs/themes issue, so I'll close this.
Theme(s)
No response
What were you expecting?
Trying installing Everforest theme
I just put this on
packages.el
:And it gives me errors:
What actually happened?
Wrote above
Steps to reproduce
Just write that on
packages.el
and reload doom configOperating system
Nobara 40
Emacs version
GNU Emacs 29.4
Installed commit of doom-themes
latest