Blame view
plugins/vundle/vundle.plugin.zsh
628 Bytes
|
093a6c34b
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
function vundle-init () {
if [ ! -d ~/.vim/bundle/vundle/ ]
then
mkdir -p ~/.vim/bundle/vundle/
fi
if [ ! -d ~/.vim/bundle/vundle/.git ] && [ ! -f ~/.vim/bundle/vundle/.git ]
then
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
echo "
\tRead about vim configuration for vundle at https://github.com/gmarik/vundle
"
fi
}
function vundle () {
vundle-init
|
|
238d8e65a
|
18 |
vim -c "execute \"PluginInstall\" | q | q" |
|
093a6c34b
|
19 20 21 22 |
}
function vundle-update () {
vundle-init
|
|
238d8e65a
|
23 |
vim -c "execute \"PluginInstall!\" | q | q" |
|
093a6c34b
|
24 25 26 27 |
}
function vundle-clean () {
vundle-init
|
|
238d8e65a
|
28 |
vim -c "execute \"PluginClean!\" | q | q" |
|
093a6c34b
|
29 |
} |