From 6742d105c2f3de9290f5f3f60ea1cabc82116380 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Wed, 19 Jun 2024 14:12:33 -0400 Subject: [PATCH] Fix themes path --- early-init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 78e05a4..0b5e0ae 100644 --- a/early-init.el +++ b/early-init.el @@ -19,7 +19,8 @@ (setq user-emacs-directory (expand-file-name "var/" default-user-emacs-directory)) (add-to-list 'custom-theme-load-path - (expand-file-name "themes/" emacs-etc-dir)) + (expand-file-name "themes/" + (expand-file-name "etc/" emacs-base-dir))) ;; Garbage collection significantly affects startup times. This setting delays ;; garbage collection during startup but will be reset later.