Update README.md

This commit is contained in:
James Cherti
2026-03-10 13:45:13 -04:00
parent 41424f2ece
commit 9006683e4f

View File

@@ -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`.)