Browse Source

Custom theme via prelude-theme variable

custom
toctan 11 years ago
parent
commit
28b9df0673
  1. 4
      README.md
  2. 5
      core/prelude-custom.el
  3. 2
      core/prelude-ui.el
  4. 2
      init.el

4
README.md

@ -475,10 +475,10 @@ line:
(disable-theme 'zenburn)
```
Or you can use another theme altogether by adding something like:
Or you can use another theme altogether by adding something in `personal/preload` like:
```lisp
(load-theme 'solarized-dark t)
(setq prelude-theme 'solarized-dark)
```
**P.S.** Solarized is not available by default - you'll have to

5
core/prelude-custom.el

@ -93,6 +93,11 @@ Only modes that don't derive from `prog-mode' should be listed here."
:type 'number
:group 'prelude)
(defcustom prelude-theme 'zenburn
"The default color theme, change this in your /personal/preload config."
:type 'symbol
:group 'prelude)
(provide 'prelude-custom)
;;; prelude-custom.el ends here

2
core/prelude-ui.el

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

2
init.el

@ -99,8 +99,8 @@ by Prelude.")
;; the core stuff
(require 'prelude-packages)
(require 'prelude-custom) ;; Needs to be loaded before core, editor and ui
(require 'prelude-ui)
(require 'prelude-custom) ;; Needs to be loaded before core and editor
(require 'prelude-core)
(require 'prelude-mode)
(require 'prelude-editor)

Loading…
Cancel
Save