15 lines
347 B
Bash
15 lines
347 B
Bash
|
#!/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 won’t symlink it, but copy it
|
|||
|
cp $BASEDIR/gitconfig $HOME/.gitconfig
|
|||
|
|
|||
|
# Source zshrc
|
|||
|
source $HOME/.zshrc
|