dotfiles/init.sh

13 lines
315 B
Bash
Raw Normal View History

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
2018-02-11 12:49:42 -08:00
cp -rf $DIR/dotfiles/.vimrc $HOME/.vimrc
2019-07-13 11:20:08 -07:00
echo ".vimrc copied"
2018-03-13 13:11:09 -07:00
cp $DIR/dotfiles/.gitconfig $HOME/.gitconfig
2019-07-13 11:20:08 -07:00
echo ".gitconfig copied"
2018-03-15 10:58:57 -07:00
cp $DIR/dotfiles/.bash_profile $HOME/.bash_profile
2019-07-13 11:20:08 -07:00
echo ".bash_profile copied"
2018-03-15 10:58:57 -07:00
2019-07-13 11:20:08 -07:00
source $HOME/.bash_profile