aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté <mikisabate@gmail.com>2014-01-03 16:22:13 +0100
committerMiquel Sabaté <mikisabate@gmail.com>2014-01-03 16:22:13 +0100
commit7c3b549ac504178faca5b9a25d0945665385e0a6 (patch)
tree00b22320ad9bbd986cf547f8278ffb9e3464d23b
parent67a506b91c3cb7281a39dc0cf63b0660e18338c6 (diff)
downloaddotfiles-7c3b549ac504178faca5b9a25d0945665385e0a6.tar.gz
dotfiles-7c3b549ac504178faca5b9a25d0945665385e0a6.zip
vim: updated the install script so it installs my vim config files correctly.
-rwxr-xr-xinstall.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 0566c9a..4d903fb 100755
--- a/install.sh
+++ b/install.sh
@@ -4,6 +4,10 @@
# 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 psqlrc $HOME/.psqlrc
@@ -23,6 +27,13 @@ rm -rf $HOME/.vim
rm -rf $HOME/.vimrc
cp -rf vim $HOME/.vim
cp vimrc $HOME/.vimrc
+echo <<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 review utility.
cd /tmp