]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/vundle/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / vundle / README.md
1 # Vundle plugin
2
3 This plugin adds functions to control [vundle](https://github.com/VundleVim/Vundle.vim) plug-in manager for vim.
4
5 To use it, add `vundle` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... vundle)
9 ```
10
11 ## Functions
12
13 | Function      | Usage           | Description                                                                |
14 |---------------|-----------------|----------------------------------------------------------------------------|
15 | vundle-init   | `vundle-init`   | Install vundle by cloning git repository into ~/.vim folder                |
16 | vundle        | `vundle`        | Install plugins set in .vimrc (equals `:PluginInstall`)                    |
17 | vundle-update | `vundle-update` | Update plugins set in .vimrc (equals `:PluginInstall!`)                    |
18 | vundle-clean  | `vundle-clean`  | Delete plugins that have been removed from .vimrc (equals `:PluginClean!`) |
19