Skip to content

Commit 03b5485

Browse files
committed
Merge pull request spf13#675 from jaguarondi/patch-1
Update README.markdown
2 parents 290c7ec + 0b0da6e commit 03b5485

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.markdown

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,18 @@ spf13-vim contains a curated set of popular vim plugins, colors, snippets and sy
213213

214214
Create `~/.vimrc.bundles.local` for any additional bundles.
215215

216-
To add a new bundle
216+
To add a new bundle, just add one line for each bundle you want to install. The line should start with the word "Bundle" followed by a string of either the vim.org project name or the githubusername/githubprojectname. For example, the github project [spf13/vim-colors](https://github.com/spf13/vim-colors) can be added with the following command
217217

218218
```bash
219219
echo Bundle \'spf13/vim-colors\' >> ~/.vimrc.bundles.local
220220
```
221221

222+
Once new plugins are added, they have to be installed.
223+
224+
```bash
225+
vim +BundleInstall! +BundleClean +q
226+
```
227+
222228
## Removing (disabling) an included plugin
223229

224230
Create `~/.vimrc.local` if it doesn't already exist.

0 commit comments

Comments
 (0)