Files

14 lines
356 B
Bash
Raw Permalink Normal View History

2022-08-15 18:30:37 -06:00
#!/bin/zsh
2023-02-21 18:44:27 -07:00
use system/vim/vundle
2022-08-15 18:30:37 -06:00
#####################################################################
2024-02-06 14:06:44 -07:00
MAIN() {
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
}