Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .vimrc.bundles #1129

Open
wants to merge 3 commits into
base: 3.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .vimrc.bundles
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@

" HTML {
if count(g:spf13_bundle_groups, 'html')
Bundle 'amirh/HTML-AutoCloseTag'
Bundle 'hail2u/vim-css3-syntax'
Bundle 'gorodinskiy/vim-coloresque'
Bundle 'tpope/vim-haml'
Expand Down
13 changes: 3 additions & 10 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,18 @@ The easiest way to install spf13-vim is to use our [automatic installer](https:/

```bash

curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh
curl https://raw.githubusercontent.com/andreimerlescu/spf13-vim/3.0/bootstrap.sh -L > spf13-vim.sh && sh spf13-vim.sh
```

If you have a bash-compatible shell you can run the script directly:
```bash

sh <(curl https://j.mp/spf13-vim3 -L)
sh <(curl https://raw.githubusercontent.com/andreimerlescu/spf13-vim/3.0/bootstrap.sh -L)
```

## Installing on Windows

On Windows and \*nix [Git] and [Curl] are required. Also, if you haven't done so already, you'll need to install [Vim].
The quickest option to install all three dependencies ([Git], [Curl], [Vim] and [spf13-vim]) is via [Chocolatey] NuGet. After installing [Chocolatey], execute the following commands on the _command prompt_:

C:\> choco install spf13-vim

_Note: The [spf13-vim package] will install Vim also!_

If you want to install [msysgit], [Curl] and [spf13-vim] individually, follow the directions below.
Please use the parent repository to install this package on Windows.

### Installing dependencies

Expand Down
6 changes: 3 additions & 3 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
# limitations under the License.

############################ SETUP PARAMETERS
app_name='spf13-vim'
[ -z "$APP_PATH" ] && APP_PATH="$HOME/.spf13-vim-3"
[ -z "$REPO_URI" ] && REPO_URI='https://github.com/spf13/spf13-vim.git'
app_name='spf17-vim'
[ -z "$APP_PATH" ] && APP_PATH="$HOME/.spf17-vim-3"
[ -z "$REPO_URI" ] && REPO_URI='git@github.com:andreimerlescu/spf13-vim.git'
[ -z "$REPO_BRANCH" ] && REPO_BRANCH='3.0'
debug_mode='0'
fork_maintainer='0'
Expand Down