Default theme: zenburn -> monokai

This commit is contained in:
Lauren Toivanen 2024-08-23 01:15:37 +03:00
parent 1e9336dc03
commit bc73055430
5 changed files with 9 additions and 9 deletions

View file

@ -33,19 +33,19 @@ Emacs provides a dozen of
built-in themes you can use out-of-the-box by invoking the `M-x
load-theme` command.
[Zenburn](https://github.com/bbatsov/zenburn-emacs) is the default
[Monokai](https://github.com/oneKelvinSmith/monokai-emacs) is the default
color theme in Prelude, but you can change it at your discretion. Why
Zenburn? I (and lots of hackers around the world) find it pretty neat
Monokai? I (and lots of hackers around the world) find it pretty neat
for some reason. Personally I find the default theme pretty tiresome
for the eyes, that's why I took that "controversial" decision to
replace it. You can, of course, easily go back to the default (or
select another theme entirely).
To disable Zenburn just put in your personal config the following
To disable Monokai just put in your personal config the following
line:
```emacs-lisp
(disable-theme 'zenburn)
(disable-theme 'monokai)
```
Or you can use another theme altogether by adding something in `personal/preload` like:

View file

@ -63,7 +63,7 @@ Here are some of the essential 3rd party packages that Prelude adds to Emacs:
(auto-save buffers when moving around)
* [which-key](https://github.com/justbur/emacs-which-key)
(shows you possible keybindings when you type a partial keybinding)
* [zenburn-theme](https://github.com/bbatsov/zenburn-emacs)
* [monokai-theme](https://github.com/oneKelvinSmith/monokai-emacs)
(Prelude's default color theme)
* [undo-tree](https://elpa.gnu.org/packages/undo-tree.html)
(A powerful way to navigate your editing history)