From ee634ab14a2263e8a4206bd376726fdee7030533 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 5 Feb 2015 15:00:35 -0800 Subject: [PATCH] dropbox_dotfiles custom-before and custom-after. --- tasks/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/__init__.py b/tasks/__init__.py index 6e5a74ac..350dd08a 100644 --- a/tasks/__init__.py +++ b/tasks/__init__.py @@ -44,7 +44,8 @@ def dropbox_dotfiles(ctx, flags='f'): ), flags )) - link_filenames(ctx, [('~/Dropbox/configs/custom.el', '~/.emacs.d/custom.el')], force=True) + link_filenames(ctx, [('~/Dropbox/configs/custom-before.el', '~/.emacs.d/custom-before.el')], force=True) + link_filenames(ctx, [('~/Dropbox/configs/custom-after.el', '~/.emacs.d/custom-after.el')], force=True) @ctask