el-get/recipes/color-theme-solarized.rcp
Noam Postavsky 32fe4ebb13 color-theme-solarized: add some comments
Note that recipe supports color-theme & custom-them
2014-08-14 22:50:11 -04:00

16 lines
811 B
Plaintext

(:name color-theme-solarized
:description "Emacs highlighting using Ethan Schoonover's Solarized color scheme"
:type github
:pkgname "sellout/emacs-color-theme-solarized"
;; This recipe works with both color-theme and custom-theme.
;; We depend on `color-theme' always, for simplicity.
:depends color-theme
:prepare (progn
;; prepare for `custom-theme'
(add-to-list 'custom-theme-load-path default-directory)
;; prepare for `color-theme'
(autoload 'color-theme-solarized-light "color-theme-solarized"
"color-theme: solarized-light" t)
(autoload 'color-theme-solarized-dark "color-theme-solarized"
"color-theme: solarized-dark" t)))