Skip to content

Commit

Permalink
Added an install file to setup everything. No longer keeping bundle f…
Browse files Browse the repository at this point in the history
…older in repo. v2.0
  • Loading branch information
Eric Youngberg committed May 18, 2014
1 parent 02d5fd1 commit fe76b06
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,4 @@
backup
swap
undo

# Save vundle for ease of use
!bundle

bundle/*
!bundle/Vundle.vim/*
bundle
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#Vim Config
_v2.0_

My Vim config.

Expand Down
1 change: 0 additions & 1 deletion bundle/Vundle.vim
Submodule Vundle.vim deleted from 8db3bc
28 changes: 28 additions & 0 deletions install
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit fe76b06

Please sign in to comment.