Skip to content

Commit

Permalink
Add README for vundle plugin (#7245)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbmueller authored and robbyrussell committed Oct 7, 2018
1 parent ca5bbd7 commit ab9d92f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions plugins/vundle/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Vundle plugin

This plugin adds functions to control [vundle](https://github.com/VundleVim/Vundle.vim) plug-in manager for vim.

To use it, add `vundle` to the plugins array in your zshrc file:

```zsh
plugins=(... vundle)
```

## Functions

| Function | Usage | Description |
|---------------|-----------------|----------------------------------------------------------------------------|
| vundle-init | `vundle-init` | Install vundle by cloning git repository into ~/.vim folder |
| vundle | `vundle` | Install plugins set in .vimrc (equals `:PluginInstall`) |
| vundle-update | `vundle-update` | Update plugins set in .vimrc (equals `:PluginInstall!`) |
| vundle-clean | `vundle-clean` | Delete plugins that have been removed from .vimrc (equals `:PluginClean!`) |

0 comments on commit ab9d92f

Please sign in to comment.