54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
|
#####################################################################
|
||
|
|
||
|
DEPENDENCIES+=()
|
||
|
REQUIRED_ENV+=()
|
||
|
|
||
|
use system/vim
|
||
|
|
||
|
#####################################################################
|
||
|
|
||
|
VUNDLE__PLUGIN_DIR="$HOME/.vim/bundle"
|
||
|
VUNDLE__BUILD_DEFINITIONS="$SCWRYPTS_CONFIG_PATH/vundle.zsh"
|
||
|
|
||
|
[ ! -f $VUNDLE__BUILD_DEFINITIONS ] && {
|
||
|
{
|
||
|
echo -e "#\n# Scwrypts Build Definitions\n#\n"
|
||
|
} > $VUNDLE__BUILD_DEFINITIONS
|
||
|
}
|
||
|
|
||
|
VUNDLE__PLUGIN_LIST=$(ls $VUNDLE__PLUGIN_DIR | grep -v 'Vundle.vim' | grep -v 'build.zsh')
|
||
|
source $VUNDLE__BUILD_DEFINITIONS
|
||
|
for PLUGIN in $(echo $VUNDLE__PLUGIN_LIST)
|
||
|
do
|
||
|
typeset -f VUNDLE__BUILD__$PLUGIN >/dev/null 2>/dev/null || {
|
||
|
echo -e "\nVUNDLE__BUILD__$PLUGIN() {\n # ... build steps from $HOME/.vim/$PLUGIN \n}" \
|
||
|
>> $VUNDLE__BUILD_DEFINITIONS
|
||
|
VUNDLE__BUILD__$PLUGIN() {}
|
||
|
}
|
||
|
done
|
||
|
|
||
|
#####################################################################
|
||
|
|
||
|
VUNDLE__PLUGIN_INSTALL() {
|
||
|
VIM +PluginInstall +qall \
|
||
|
&& SUCCESS 'successfully installed Vundle.vim plugins' \
|
||
|
|| FAIL 1 'failed to install Vundle.vim plugins'
|
||
|
}
|
||
|
|
||
|
VUNDLE__REBUILD_PLUGINS() {
|
||
|
local ERRORS=0
|
||
|
|
||
|
local PLUGIN
|
||
|
for PLUGIN in $(echo $VUNDLE__PLUGIN_LIST)
|
||
|
do
|
||
|
cd "$VUNDLE__PLUGIN_DIR/$PLUGIN"
|
||
|
STATUS "building '$PLUGIN'"
|
||
|
VUNDLE__BUILD__$PLUGIN \
|
||
|
&& SUCCESS "finished building '$PLUGIN'" \
|
||
|
|| ERROR "failed to build '$PLUGIN' (see above)" \
|
||
|
;
|
||
|
done
|
||
|
|
||
|
return $ERRORS
|
||
|
}
|