Make it possible to stop prelude loading any theme at all

Fixes #844.
This commit is contained in:
Geoff Shannon 2015-05-15 16:53:39 -05:00
parent 04a663fa45
commit b4717ca5b3
2 changed files with 9 additions and 1 deletions

View file

@ -499,6 +499,13 @@ Or you can use another theme altogether by adding something in `personal/preload
install it from MELPA first (`M-x package-install RET install it from MELPA first (`M-x package-install RET
solarized-theme`). solarized-theme`).
Finally, if you don't want any theme at all, you can add this to your
`personal/preload`:
```lisp
(setq prelude-theme nil)
```
### Personalizing ### Personalizing
Fork the official Prelude repo and add your own touch to it. You're advised to avoid changing stuff outside of the Fork the official Prelude repo and add your own touch to it. You're advised to avoid changing stuff outside of the

View file

@ -68,7 +68,8 @@
"%b")))) "%b"))))
;; use zenburn as the default theme ;; use zenburn as the default theme
(load-theme prelude-theme t) (when prelude-theme
(load-theme prelude-theme t))
(provide 'prelude-ui) (provide 'prelude-ui)
;;; prelude-ui.el ends here ;;; prelude-ui.el ends here