init vim and plugins with vundle

This commit is contained in:
Stefen Auris 2017-09-17 16:12:13 -04:00
parent 167f4c58c5
commit dcbeda0bf1
8 changed files with 11 additions and 0 deletions

@ -0,0 +1 @@
Subproject commit 7ae413e00691dff4bad450229ebed37d27673c10

1
.vim/bundle/ctrlp.vim Submodule

@ -0,0 +1 @@
Subproject commit bde7a2950adaa82e894d7bdf69e3e7383e40d229

@ -0,0 +1 @@
Subproject commit a97b6d12ae06c2db524e2ceba976f1d4f4637cb7

@ -0,0 +1 @@
Subproject commit 8a3e3e279435d9875a3e263a838d0c41df3caeb0

@ -0,0 +1 @@
Subproject commit af3292dbbb6d8abe35d0ad50bd86b6ac6219abb7

@ -0,0 +1 @@
Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21

@ -0,0 +1 @@
Subproject commit 49ee364222dc2a5a00dddf89fd61880e3e39d46a

View file

@ -34,6 +34,10 @@ then
chsh -s /bin/zsh
fi
#init vim and plugins
vim +PluginInstall! +qall
#init git
echo -n "Would you like to configure your git name and email? (y/n) => "; read answer
if [[ $answer = "Y" ]] || [[ $answer = "y" ]]; then
echo -n "What is your git user name => "; read name