diff --git a/install_awesome_vimrc.sh b/install_awesome_vimrc.sh index 6b94e519..70130419 100644 --- a/install_awesome_vimrc.sh +++ b/install_awesome_vimrc.sh @@ -16,3 +16,21 @@ catch endtry' > ~/.vimrc echo "Installed the Ultimate Vim configuration successfully! Enjoy :-)" + +# check for mvim installation +if [[ "$OSTYPE" == "darwin"* ]]; then + echo "Checking for brew ....." + which -s brew + if [[ $? != 0 ]] ; then + echo "Brew not found. Starting install now ...." + # Install Homebrew + # https://github.com/mxcl/homebrew/wiki/installation + /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)" + echo "Brew install complete!" + else + echo "Brew found. Running update...." + brew update + fi + echo "Installing macvim and vim" + brew install macvim vim +fi