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