aboutsummaryrefslogtreecommitdiffstats
path: root/common_move_in.sh
diff options
context:
space:
mode:
authorjason2015-02-16 18:35:04 -0700
committerjason2015-02-16 18:35:04 -0700
commitc3c24188afac20ccf3306aa6ff0171ddbcba8a97 (patch)
tree5c825ef38cd53e6661fedb3fdb1b8992c1ba9669 /common_move_in.sh
parentb5fcebc573ecc765f8890757f4633fe77da566a6 (diff)
downloaddotfiles-c3c24188afac20ccf3306aa6ff0171ddbcba8a97.tar.gz
dotfiles-c3c24188afac20ccf3306aa6ff0171ddbcba8a97.zip
fix common move in
Diffstat (limited to 'common_move_in.sh')
-rwxr-xr-xcommon_move_in.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/common_move_in.sh b/common_move_in.sh
index 2310657..f287c3d 100755
--- a/common_move_in.sh
+++ b/common_move_in.sh
@@ -13,12 +13,15 @@ else
13 cd dotfiles 13 cd dotfiles
14 git pull 14 git pull
15fi 15fi
16CWD=`pwd`
16 17
17echo "Linking vim settings..." 18echo "Linking vim settings..."
18ln -s vim $HOME/.vim 19ln -s $CWD/vim $HOME/.vim
19ln -s vim/vimrc $HOME/.vimrc 20ln -s $CWD/vim/vimrc $HOME/.vimrc
20 21
21if [[ $OSTYPE == darwin* ]]; then 22if [[ $OSTYPE == darwin* ]]; then
22 echo "Linking amethyst config..." 23 echo "Linking amethyst config..."
23 ln -s amethyst $HOME/.amethyst 24 ln -s $CWD/amethyst $HOME/.amethyst
24fi 25fi
26
27echo "Done."