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

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