add elpa linking.

This commit is contained in:
Ivan Malison 2015-03-08 00:37:04 -08:00
parent cb7ac216e7
commit e337f7107d

View File

@ -44,7 +44,11 @@ def dropbox_dotfiles(ctx, flags='f'):
), ),
flags flags
)) ))
@ctask
def link_emacs(ctx, flags='f'):
link_filenames(ctx, [('~/Dropbox/configs/custom-before.el', '~/.emacs.d/custom-before.el')], force=True) link_filenames(ctx, [('~/Dropbox/configs/custom-before.el', '~/.emacs.d/custom-before.el')], force=True)
link_filenames(ctx, [('~/Dropbox/configs/elpa', '~/.emacs.d/elpa')], force=True)
link_filenames(ctx, [('~/Dropbox/configs/custom-after.el', '~/.emacs.d/custom-after.el')], force=True) link_filenames(ctx, [('~/Dropbox/configs/custom-after.el', '~/.emacs.d/custom-after.el')], force=True)