Browse Source

rewrote theme handling

master
Marc 6 months ago
parent
commit
d49969340f
1 changed files with 2 additions and 4 deletions
  1. 6
      config.org

6
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

Loading…
Cancel
Save