Commit c16beaa0 authored by Justin Hileman's avatar Justin Hileman

[split] Move vundle plugin to oh-my-fish/plugin-vundle

https://github.com/oh-my-fish/plugin-vundle
parent 7b7732fe
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