Simple set up of dotfiles

This commit is contained in:
Jonny Barnes 2016-04-08 01:39:33 +01:00
parent 1215588373
commit 4ee2e83109

14
bootstrap.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env zsh
# Current dir
BASEDIR=$(pwd)
# ln the various files
test -L $HOME/.curlrc || ln -f -s $BASEDIR/curlrc $HOME/.curlrc
test -L $HOME/.zshrc || ln -f -s $BASEDIR/zshrc $HOME/.zshrc
# .gitconfig gets edited by .extra so we wont symlink it, but copy it
cp $BASEDIR/gitconfig $HOME/.gitconfig
# Source zshrc
source $HOME/.zshrc