You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/vundle/vundle.load

26 lines
567 B
Fish

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