From 9006683e4f57794c3d74bf1c5db0a3fc5fd13458 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Tue, 10 Mar 2026 13:45:13 -0400 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0a8002..a13b59a 100644 --- a/README.md +++ b/README.md @@ -703,8 +703,11 @@ To install and configure these packages, add the following to `~/.emacs.d/post-i For instance, to switch to a another theme than the default one, add the following to the `~/.emacs.d/post-init.el` file: ```emacs-lisp -(mapc #'disable-theme custom-enabled-themes) ; Disable all active themes -(load-theme 'modus-operandi t) ; Load the built-in theme +(let ((inhibit-redisplay t)) + ;; Disable all active themes + (mapc #'disable-theme custom-enabled-themes) + ;; Load the built-in theme + (load-theme 'modus-operandi t)) ``` (If you prefer dark themes, replace `modus-operandi` with `modus-vivendi`.)