2022-08-15 18:30:37 -06:00
|
|
|
#!/bin/zsh
|
2023-02-21 18:44:27 -07:00
|
|
|
DEPENDENCIES+=()
|
|
|
|
|
REQUIRED_ENV+=()
|
|
|
|
|
|
|
|
|
|
use system/vim/vundle
|
|
|
|
|
|
|
|
|
|
CHECK_ENVIRONMENT
|
2022-08-15 18:30:37 -06:00
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
|
|
PLUGIN_INSTALL() {
|
2023-11-11 15:13:30 -07:00
|
|
|
[ -d "$HOME/.vim/bundle/Vundle.vim" ] || {
|
|
|
|
|
mkdir -p "$HOME/.vim/bundle/"
|
2023-11-11 15:27:34 -07:00
|
|
|
git clone https://github.com/VundleVim/Vundle.vim.git "$HOME/.vim/bundle/Vundle.vim"
|
2023-11-11 15:13:30 -07:00
|
|
|
}
|
2023-11-11 15:27:34 -07:00
|
|
|
|
2023-11-11 15:13:30 -07:00
|
|
|
VUNDLE__PLUGIN_INSTALL || return 1
|
2023-02-21 18:44:27 -07:00
|
|
|
VUNDLE__REBUILD_PLUGINS || return 2
|
2022-08-15 18:30:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
|
PLUGIN_INSTALL $@
|