Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix readme preload description #1187

Merged
merged 2 commits into from
Aug 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down