Update README.md

This commit is contained in:
James Cherti
2025-03-06 20:20:16 -05:00
parent 016c36fac8
commit 81b1b05582

View File

@@ -450,13 +450,15 @@ In addition to code folding, *outline-indent* also allows: moving indented block
### Changing the default theme
For instance, to switch to a darker theme, add the following to the `~/.emacs.d/post-init.el` file:
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 'tango-dark t) ; Load the built-in tango-dark theme
(load-theme 'modus-operandi t) ; Load the built-in theme
```
(If you prefer dark themes, replace `modus-operandi` with `modus-vivendi`.)
Emacs includes several built-in themes that you can use without installing additional packages:
- `tango-dark`: Face colors using the Tango palette (dark background).