Fix readme preload description (#1187)
`prelude-require-package` has not be defined during preloading. This patch fixes readme description. Fixes #1161.
This commit is contained in:
parent
aa54fd6dc9
commit
0ce648b699
1 changed files with 8 additions and 7 deletions
15
README.md
15
README.md
|
@ -526,15 +526,16 @@ line:
|
|||
Or you can use another theme altogether by adding something in `personal/preload` like:
|
||||
|
||||
```lisp
|
||||
(prelude-require-package 'solarized-theme)
|
||||
(setq prelude-theme 'solarized-dark)
|
||||
(setq prelude-theme 'tango)
|
||||
```
|
||||
|
||||
**Note** [Solarized](https://github.com/bbatsov/zenburn-emacs) is not
|
||||
available by default - you'll have to install it from MELPA first,
|
||||
therefore the need for `prelude-require-package`. Alternatively you
|
||||
can manually install the package like this - `M-x package-install RET
|
||||
solarized-theme`.
|
||||
**Note** To use a non-built-in theme, like [Solarized](https://github.com/bbatsov/zenburn-emacs),
|
||||
you'll have to install it from MELPA first by `M-x package-install RET solarized-theme`. Then add
|
||||
|
||||
``` lisp
|
||||
(setq prelude-theme 'solarized-dark)
|
||||
```
|
||||
in `personal/preload`.
|
||||
|
||||
Finally, if you don't want any theme at all, you can add this to your
|
||||
`personal/preload`:
|
||||
|
|
Loading…
Reference in a new issue