Skip to content
Discussion options

You must be logged in to vote

EDIT: The fix is up: doomemacs/core@1aabae7

Turns out there is a bug in doom/reload where it doesn't re-evaluate the theme's source file, in case of changes. I'll push a fix for that soon, but in the meantime you can fix it locally with:

;;; add to $DOOMDIR/config.el
(defadvice! fixed-doom/reload-theme ()
  :override #'doom/reload-theme
  (interactive)
  (let* ((themes (copy-sequence custom-enabled-themes))
         (real-themes (cl-remove-if-not #'doom--theme-is-colorscheme-p themes)))
    (mapc #'disable-theme themes)
    (dolist (th (reverse themes))
      (if (locate-file (concat (symbol-name th) "-theme.el")
                       (custom-theme--load-path)
                       '("" "c

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ericsoderstrom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants