Commit 2ab14365 authored by Bruno's avatar Bruno

Merge pull request #155 from CADBOT/master

Add a vundle plugin similiar to that found in oh-my-zsh
parents 2f585a1c 50396d58
function vundle-init
if [ ! -d ~/.vim/bundle/vundle/ ]
mkdir -p ~/.vim/bundle/vundle/
end
if [ ! -d ~/.vim/bundle/vundle/.git/ ]
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
end
end
function vundle
vundle-init
vim -c "execute \"BundleInstall\" | q | q"
end
function vundle-update
vundle-init
vim -c "execute \"BundleInstall!\" | q | q"
end
function vundle-clean
vundle-init
vim -c "execute \"BundleClean!\" | q | q"
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment