From c16beaa0fc4be797e7fb423ea18a7c89cbafa731 Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Sun, 31 May 2015 08:30:49 -0700 Subject: [PATCH] [split] Move vundle plugin to oh-my-fish/plugin-vundle https://github.com/oh-my-fish/plugin-vundle --- plugins/vundle/vundle.load | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 plugins/vundle/vundle.load diff --git a/plugins/vundle/vundle.load b/plugins/vundle/vundle.load deleted file mode 100644 index d81cf78..0000000 --- a/plugins/vundle/vundle.load +++ /dev/null @@ -1,25 +0,0 @@ -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