From ae5cb5b957299739a224f25f9ed170b28cb8b9a5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 29 Dec 2020 00:52:12 -0500 Subject: [PATCH] Always prioritize custom-theme-directory Over plugins/built-in themes. --- core/core-ui.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/core-ui.el b/core/core-ui.el index beeba5d20..0bbece4b1 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -548,6 +548,11 @@ windows, switch to `doom-fallback-buffer'. Otherwise, delegate to original ;; ;;; Theme & font +;; Always prioritize the user's themes above the built-in/packaged ones. +(setq custom-theme-load-path + (cons 'custom-theme-directory + (remq 'custom-theme-directory custom-theme-load-path))) + ;; Underline looks a bit better when drawn lower (setq x-underline-at-descent-line t)