all repos — nixfiles @ 112ef458a3f3afa1ce2714c884aefaba9dfe4d2f

System and user configuration, managed by nix and home-manager

Emacs: speedup modus theme toggling
Alan Pearce alan@alanpearce.eu
Tue, 07 Mar 2023 20:41:13 +0100
commit

112ef458a3f3afa1ce2714c884aefaba9dfe4d2f

parent

23b02c2a0778e851db3671443e4129f60af7d4ed

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M user/emacs/init.eluser/emacs/init.el
@@ -80,13 +80,13 @@ (interactive)                   (let ((appearance (plist-get (mac-application-state) :appearance)))
                     (mapc #'disable-theme custom-enabled-themes)
                     (cond ((equal appearance "NSAppearanceNameAqua")
-                           (load-theme light-mode-theme t))
+                           (enable-theme light-mode-theme))
                           ((equal appearance "NSAppearanceNameDarkAqua")
-                           (load-theme dark-mode-theme t)))))
+                           (enable-theme dark-mode-theme)))))
                 (add-hook 'mac-effective-appearance-change-hook #'my/set-dark-or-light-theme)
                 (if (fboundp #'mac-application-state)
                     (my/set-dark-or-light-theme)
-                  (load-theme light-mode-theme t)))))
+                  (enable-theme light-mode-theme)))))
   (if (eq window-system 'x)
       (setq-default line-spacing 0.2))
   (setq frame-background-mode 'light)