--- /dev/null
+#!/usr/bin/env bash
+git stash
+git pull
+git stash pop
+
+git config --local --replace remote.pushDefault ssh://src.twobees.de:/git/dotvim.git
+
+if [ -d bundle/Vundle.vim ];then
+ cd bundle/Vundle.vim;
+ echo "Update Vundle:"
+ git pull
+ cd -
+else
+ git clone https://github.com/VundleVim/Vundle.vim.git bundle/Vundle.vim
+fi
+vim +PluginClean! +PluginInstall! +qall
+stty sane
+++ /dev/null
-#!/usr/bin/env bash
-git stash
-git pull
-git stash pop
-
-git config --local --replace remote.pushDefault ssh://src.twobees.de:/git/dotvim.git
-
-if [ -d bundle/Vundle.vim ];then
- cd bundle/Vundle.vim;
- echo "Update Vundle:"
- git pull
- cd -
-else
- git clone https://github.com/VundleVim/Vundle.vim.git bundle/Vundle.vim
-fi
-vim +PluginClean! +PluginInstall! +qall
-stty sane