add vim install script updates

This commit is contained in:
ViktorBarzin 2018-01-15 21:53:39 +00:00
parent 1c46d7fef8
commit 19fa6c77a3
2 changed files with 16 additions and 3 deletions

View file

@ -39,6 +39,16 @@ sudo pip install --upgrade pip && \
sudo pip install virtualenvwrapper && \
source ~/.zshrc && \
# Check whether to install vim
read -p "Setup vim? (Y/n)?" CONT
if [ "$CONT" = "n" ]; then
echo Skipping vim installation
else
# Run vim installation script
./setup-vim.sh
fi
echo '
@ -50,3 +60,4 @@ echo '
' && \
echo 'Restart your shell to apply changes'