diff options
| author | Miquel Sabaté <mikisabate@gmail.com> | 2014-01-03 16:22:13 +0100 |
|---|---|---|
| committer | Miquel Sabaté <mikisabate@gmail.com> | 2014-01-03 16:22:13 +0100 |
| commit | 7c3b549ac504178faca5b9a25d0945665385e0a6 (patch) | |
| tree | 00b22320ad9bbd986cf547f8278ffb9e3464d23b /install.sh | |
| parent | 67a506b91c3cb7281a39dc0cf63b0660e18338c6 (diff) | |
| download | dotfiles-7c3b549ac504178faca5b9a25d0945665385e0a6.tar.gz dotfiles-7c3b549ac504178faca5b9a25d0945665385e0a6.zip | |
vim: updated the install script so it installs my vim config files correctly.
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |
