config/config.sh

20 lines
399 B
Bash
Executable File

#!/bin/bash
cd ~
rm -f .profile
rm -f .bashrc
ln -s ~/Repositories/config/profile .profile
ln -s ~/Repositories/config/bashrc .bashrc
rm -f .screenrf
ln -s ~/Repositories/config/screenrc .screenrc
rm -f .vimrc
ln -s ~/Repositories/config/vimrc .vimrc
# set up the default branch for git
git config --global branch.master.remote origin
git config --global branch.master.merge refs/heads/master