blob: bda971778e18c5ea1c7ffabded15d991dbea029c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
# If something goes wrong, get the f*ck out.
set -e
# Install the files on this repo.
cp bashrc $HOME/.bashrc
cp irbrc $HOME/.irbrc
cp gemrc $HOME/.gemrc
cp gitcompletion.sh $HOME/.gitcompletion.sh
cp gitconfig $HOME/.gitconfig
cp global.gitignore $HOME/.gitignore
cp vimrc $HOME/.vimrc
cp hgrc $HOME/.hgrc
cp rake_completion $HOME/.rake_completion
chmod +x $HOME/.rake_completion
|