#!/bin/bash set -e echo 'setup zsh' if [ ! -d "$HOME/.oh-my-zsh" ] then git clone https://github.com/ohmyzsh/ohmyzsh.git $HOME/.oh-my-zsh fi if [ ! -f "$HOME/.zshrc" ] then cp $HOME/.oh-my-zsh/templates/zshrc.zsh-template $HOME/.zshrc echo 'source $HOME/.profile' >> $HOME/.zshrc fi echo 'setup nodejs' if [ ! -d "$HOME/.nvm" ] then git clone https://github.com/nvm-sh/nvm.git $HOME/.nvm cat >> $HOME/.profile <> $HOME/.profile fi cd $HOME/.nvm git checkout v0.39.1 . $HOME/.nvm/nvm.sh if ! [ -x "$(command -v yarn)" ] then nvm install node nvm use node npm install yarn -g fi mkdir -p $HOME/.local/bin $HOME/local $HOME/downloads echo 'setup php' if [ ! -f "$HOME/downloads/composer" ] then wget -O $HOME/downloads/composer https://getcomposer.org/installer fi if [ ! -f "$HOME/.local/bin/composer" ] then cd $HOME/downloads php composer mv composer.phar $HOME/.local/bin/composer fi echo 'setup ssh' if [ ! -d $HOME/.ssh ] then mkdir $HOME/.ssh chmod 700 $HOME/.ssh cat /tmp/$USER.pub > $HOME/.ssh/authorized_keys fi echo 'setup workspace folder' if [ ! -L $HOME/www ] then ln -sf /workspace/www/$USER $HOME/www fi echo 'setup tmp folder' if [ ! -L $HOME/tmp ] then ln -sf /workspace/tmp/$USER $HOME/tmp fi echo 'setup tmux' if [ ! -f $HOME/.tmux.conf ] then echo 'set-option -g history-limit 102400' > $HOME/.tmux.conf echo 'set-option -g default-shell "/bin/zsh"' >> $HOME/.tmux.conf fi echo 'setup git' git config --global core.quotepath false git config --global http.version HTTP/1.1 git config --global pull.rebase false echo "done." exit 0