diff --git a/tasks/__init__.py b/tasks/__init__.py index 350dd08a..e2a3c3a6 100644 --- a/tasks/__init__.py +++ b/tasks/__init__.py @@ -44,7 +44,11 @@ def dropbox_dotfiles(ctx, flags='f'): ), 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/elpa', '~/.emacs.d/elpa')], force=True) link_filenames(ctx, [('~/Dropbox/configs/custom-after.el', '~/.emacs.d/custom-after.el')], force=True)