Update custom theme recipes to take advantage of new el-get features

This commit is contained in:
2012-04-06 11:12:11 +01:00
parent ec55e96eff
commit 26ff7f09ad

View File

@@ -29,11 +29,12 @@
(setq el-get-sources
'((:name birds-of-paradise-plus-theme
:description "A Emacs port of Joseph Bergantine's light-on-dark theme by the same name."
:website "https://github.com/jimeh/birds-of-paradise-plus-theme.el"
:type git
:url "git://github.com/jimeh/birds-of-paradise-plus-theme.el.git"
:post-init (lambda ()
(push (config-path "el-get/birds-of-paradise-plus-theme")
custom-theme-load-path)))
:url "https://github.com/jimeh/birds-of-paradise-plus-theme.el.git"
:post-init (add-to-list 'custom-theme-load-path
default-directory))
(:name eproject
:type git
:url "https://github.com/jrockway/eproject.git"
@@ -94,20 +95,20 @@
:type emacswiki
:features tiling)
(:name tomorrow-theme
:description "Emacs highlighting using Chris Charles's Tomorrow color scheme"
:description "Colour Schemes for Hackers"
:website "https://github.com/chriskempson/tomorrow-theme"
:type git
:url "https://github.com/chriskempson/tomorrow-theme.git"
:load-path "GNU Emacs"
:post-init (lambda ()
(push (config-path "el-get/tomorrow-theme/GNU Emacs")
custom-theme-load-path)))
:post-init (add-to-list 'custom-theme-load-path
default-directory))
(:name tomorrow-night-paradise-theme
:description "My customized version of Chris Kempson's Tomorrow Night Bright theme."
:description "A light-on-dark Emacs theme which is essentially a tweaked version of Chris Kempson's Tomorrow Night Bright theme."
:website "https://github.com/jimeh/tomorrow-night-paradise-theme.el"
:type git
:url "git://github.com/jimeh/tomorrow-night-paradise-theme.el.git"
:post-init (lambda ()
(push (config-path "el-get/tomorrow-night-paradise-theme")
custom-theme-load-path)))
:post-init (add-to-list 'custom-theme-load-path
default-directory))
(:name yasnippet
:type git
:url "https://github.com/capitaomorte/yasnippet.git")))