-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added an install file to setup everything. No longer keeping bundle f…
…older in repo. v2.0
- Loading branch information
Eric Youngberg
committed
May 18, 2014
1 parent
02d5fd1
commit fe76b06
Showing
4 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,4 @@ | |
backup | ||
swap | ||
undo | ||
|
||
# Save vundle for ease of use | ||
!bundle | ||
|
||
bundle/* | ||
!bundle/Vundle.vim/* | ||
bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#Vim Config | ||
_v2.0_ | ||
|
||
My Vim config. | ||
|
||
|
Submodule Vundle.vim
deleted from
8db3bc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |