yage
3ca4fe0c65
===================================================================== --- Bug Fixes ---------------------------- - fixed typo in Vundle.vim clone
22 lines
509 B
Bash
Executable File
22 lines
509 B
Bash
Executable File
#!/bin/zsh
|
|
DEPENDENCIES+=()
|
|
REQUIRED_ENV+=()
|
|
|
|
use system/vim/vundle
|
|
|
|
CHECK_ENVIRONMENT
|
|
#####################################################################
|
|
|
|
PLUGIN_INSTALL() {
|
|
[ -d "$HOME/.vim/bundle/Vundle.vim" ] || {
|
|
mkdir -p "$HOME/.vim/bundle/"
|
|
git clone https://github.com/VundleVim/Vundle.vim.git "$HOME/.vim/bundle/Vundle.vim"
|
|
}
|
|
|
|
VUNDLE__PLUGIN_INSTALL || return 1
|
|
VUNDLE__REBUILD_PLUGINS || return 2
|
|
}
|
|
|
|
#####################################################################
|
|
PLUGIN_INSTALL $@
|