Blame view

plugins/vundle/vundle.plugin.zsh 619 Bytes
093a6c34b   mj   Squashed 'repos/r...
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
dcebc9e8f   mj   Squashed 'repos/r...
18
    vim -c "execute \"PluginInstall\" | qa"
093a6c34b   mj   Squashed 'repos/r...
19
20
21
22
  }
  
  function vundle-update () {
    vundle-init
dcebc9e8f   mj   Squashed 'repos/r...
23
    vim -c "execute \"PluginInstall!\" | qa"
093a6c34b   mj   Squashed 'repos/r...
24
25
26
27
  }
  
  function vundle-clean () {
    vundle-init
dcebc9e8f   mj   Squashed 'repos/r...
28
    vim -c "execute \"PluginClean!\" | qa"
093a6c34b   mj   Squashed 'repos/r...
29
  }