===================================================================== --- Changes ------------------------------ - Helm template generation looks for default values in file:// dependencies in addition to the standard values locations - vundle installer now *actually installs Vundle.vim* if it is missing
21 lines
506 B
Bash
Executable File
21 lines
506 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/budle/Vundle.vim"
|
|
}
|
|
VUNDLE__PLUGIN_INSTALL || return 1
|
|
VUNDLE__REBUILD_PLUGINS || return 2
|
|
}
|
|
|
|
#####################################################################
|
|
PLUGIN_INSTALL $@
|