# HG changeset patch # User Meredith Howard # Date 1485052789 18000 # Node ID 1c0402e3db25507f35489de791887a755a5e06fb # Parent 2c7cb331d2dc4310e607df2ac15734e797e0ac99 More shallow clones diff --git a/.vimrc b/.vimrc --- a/.vimrc +++ b/.vimrc @@ -23,10 +23,10 @@ let s:filename=expand('') echo "Installing Vundle and Plugins...\n" if s:on_windows == 0 silent !mkdir -p ~/.vim/bundle - silent !git clone https://github.com/gmarik/vundle ~/.vim/bundle/vundle + silent !git clone --depth 1 https://github.com/gmarik/vundle ~/.vim/bundle/vundle else silent execute '!mkdir "'. $HOME .'\vimfiles\bundle"' - silent execute '!git clone https://github.com/gmarik/vundle "'. $HOME .'\vimfiles\bundle\vundle"' + silent execute '!git clone --depth 1 https://github.com/gmarik/vundle "'. $HOME .'\vimfiles\bundle\vundle"' endif let s:installed_vundle=1 endif @@ -88,7 +88,7 @@ let s:filename=expand('') if s:installed_vundle == 1 echo "Installing Plugins, please ignore key map error messages\n" - call PluginInstall + :PluginInstall endif " }}}