#!/bin/bash # If something goes wrong, get the f*ck out. set -e # Initialize and update git submodules. git submodule init git submodule update # Install the files on this repo. cp bashrc $HOME/.bashrc cp bash_profile $HOME/.bash_profile cp psqlrc $HOME/.psqlrc cp valgrindrc $HOME/.valgrindrc cp irbrc $HOME/.irbrc cp gemrc $HOME/.gemrc cp gitcompletion.sh $HOME/.gitcompletion.sh cp gitconfig $HOME/.gitconfig cp global.gitignore $HOME/.gitignore cp hgrc $HOME/.hgrc cp hgcompletion.sh $HOME/.hgcompletion.sh cp global.hgignore $HOME/.hgignore cp rake_completion $HOME/.rake_completion cp rvmrc $HOME/.rvmrc chmod +x $HOME/.rake_completion # Wipe out the current vim config and replace it with this one. rm -rf $HOME/.vim rm -rf $HOME/.vimrc cp -rf vim $HOME/.vim cp vimrc $HOME/.vimrc cat <