mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Update custom theme recipes to take advantage of new el-get features
This commit is contained in:
25
packages.el
25
packages.el
@@ -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")))
|
||||
|
||||
Reference in New Issue
Block a user