Give more robust default method for bootstrapping.

This commit is contained in:
John Tyree 2012-12-10 01:55:17 +01:00
parent 20164da7a9
commit 5a01fdfe07

View File

@ -39,9 +39,14 @@ The goal has always been to add functionality without changing all the features,
The easiest way to install spf13-vim is to use our [automatic installer](http://j.mp/spf13-vim3) by simply copying and pasting the following line into a terminal. This will install spf13-vim and backup your existing vim configuration. If you are upgrading from a prior version (before 3.0) this is also the recommended installation.
```bash
wget http://j.mp/spf13-vim3 -O spf13-vim.sh && sh spf13-vim.sh
```
curl http://j.mp/spf13-vim3 -L -o - | sh
If you have a bash-compatible shell you can run the script directly:
```bash
sh <(curl http://j.mp/spf13-vim3 -L)
```
## Installing on Windows