aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 133f60f..f9ef05e 100644
--- a/Makefile
+++ b/Makefile
@@ -15,11 +15,6 @@ vim:
15 rm -f ~/.vim_runtime/my_configs.vim 15 rm -f ~/.vim_runtime/my_configs.vim
16 ln -s `pwd`/vimrc ~/.vim_runtime/my_configs.vim 16 ln -s `pwd`/vimrc ~/.vim_runtime/my_configs.vim
17 17
18wiki:
19 # vimwiki
20 if [ ! -d "$(HOME)/.vimwiki" ]; then \
21 git clone --depth=1 git@github.com:typebrook/wiki.git ~/vimwiki; \
22 fi
23 18
24git: 19git:
25 rm -f ~/.gitconfig 20 rm -f ~/.gitconfig
@@ -29,6 +24,12 @@ tig:
29 rm -f ~/.tigrc 24 rm -f ~/.tigrc
30 ln -s `pwd`/tigrc ~/.tigrc 25 ln -s `pwd`/tigrc ~/.tigrc
31 26
27wiki:
28 # vimwiki
29 if [ ! -d "$(HOME)/.vimwiki" ]; then \
30 git clone --depth=1 git@github.com:typebrook/wiki.git ~/vimwiki; \
31 fi
32
32crontab: 33crontab:
33 (crontab -l 2>/dev/null; cat scripts/*.cron) | crontab - 34 (crontab -l 2>/dev/null; cat scripts/*.cron) | crontab -
34 35