From fe76b067b5b88f53e90e301df33e16193f00f37b Mon Sep 17 00:00:00 2001 From: Eric Youngberg Date: Sun, 18 May 2014 17:34:57 -0400 Subject: [PATCH] Added an install file to setup everything. No longer keeping bundle folder in repo. v2.0 --- .gitignore | 7 +------ README.md | 1 + bundle/Vundle.vim | 1 - install | 28 ++++++++++++++++++++++++++++ 4 files changed, 30 insertions(+), 7 deletions(-) delete mode 160000 bundle/Vundle.vim create mode 100755 install diff --git a/.gitignore b/.gitignore index 24ffa02..f28c3db 100644 --- a/.gitignore +++ b/.gitignore @@ -2,9 +2,4 @@ backup swap undo - -# Save vundle for ease of use -!bundle - -bundle/* -!bundle/Vundle.vim/* +bundle diff --git a/README.md b/README.md index 04137e4..4b12dbf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ #Vim Config +_v2.0_ My Vim config. diff --git a/bundle/Vundle.vim b/bundle/Vundle.vim deleted file mode 160000 index 8db3bcb..0000000 --- a/bundle/Vundle.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8db3bcb5921103f0eb6de361c8b25cc03cb350b5 diff --git a/install b/install new file mode 100755 index 0000000..563c918 --- /dev/null +++ b/install @@ -0,0 +1,28 @@ +#!/bin/bash + +# Install file for the Vim config + + +echo "" +echo "Installing Vim Config..." +echo "" + +# Install Vundle +echo "----- Installing Vundle" +git clone https://github.com/gmarik/Vundle.vim ./bundle/Vundle.vim + +# Install Plugins +echo "" +echo "----- Installing Plugins" +vim +PluginInstall +qall + +# Make directories for backups, swap, and undo files +echo "" +echo "----- Creating directories" +mkdir undo backup swap + +# Finish installation +echo "" +echo "All done!" +echo "" +exit