From d49969340f2b91552e991f54d68edf410ef89491 Mon Sep 17 00:00:00 2001 From: Marc Date: Sat, 23 Mar 2024 11:03:43 +0100 Subject: [PATCH] rewrote theme handling --- config.org | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/config.org b/config.org index be928d9..2539910 100644 --- a/config.org +++ b/config.org @@ -342,12 +342,10 @@ Restore it to reasonable value after init. Also stop garbage collection during m Windows Theme: #+BEGIN_SRC emacs-lisp (when *sys/windows* - (dolist (theme custom-enabled-themes) - (disable-theme theme)) + (mapcar #'disable-theme custom-enabled-themes) (load-theme 'tango)) (when *sys/linux* - (dolist (theme custom-enabled-themes) - (disable-theme theme)) + (mapcar #'disable-theme custom-enabled-themes) (load-theme 'plastic)) #+END_SRC