add vim install script updates
This commit is contained in:
parent
1c46d7fef8
commit
19fa6c77a3
2 changed files with 16 additions and 3 deletions
11
setup-env.sh
11
setup-env.sh
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue