blob: 220d648bbc598d67bf25dfd5d2cdc5e0063dbbc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/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 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
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 <<HERE
You have successfully installed my vim configuration files. However, you have
to type the following command inside vim to install all the plugins that I'm
using:
:BundleInstall
HERE
# Download and install the g utility
cd /tmp
rm -rf g
git clone https://github.com/mssola/g
cd g
cp g.sh $HOME/.g.sh
cp gcompletion.sh $HOME/.gcompletion.sh
# Download and install the review utility
cat <<HERE
We'll now proceed to install the Review utility. The Review utility will be
installed in /opt/review, that's why we ask for root permissions.
HERE
cd /tmp
rm -rf review
git clone https://github.com/mssola/review
cd review
sudo ./install.sh
|