mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Instead of manually just setting faces after loading a doom-themes theme, let's use a custom override theme which we apply right after applying any doom-themes theme. The override theme uses various doom-color helpers, so the colors it uses will be based on the most recently applied doom-themes theme.
15 lines
362 B
EmacsLisp
15 lines
362 B
EmacsLisp
;;; siren-core-themes.el --- jimeh's Emacs Siren: Custom themes.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Enable loading custom themes.
|
|
|
|
;;; Code:
|
|
|
|
(defvar siren-themes-dir (expand-file-name "themes" siren-dir)
|
|
"Root directory for Emacs Siren custom themes.")
|
|
(add-to-list 'custom-theme-load-path siren-themes-dir)
|
|
|
|
(provide 'siren-core-themes)
|
|
;;; siren-core-themes.el ends here
|