Last active
June 4, 2018 10:35
-
-
Save vtombesi/d9462ceb0125fcc08dffa558392c699f to your computer and use it in GitHub Desktop.
start-working.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'Installing brew' | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
echo 'Installing brew cask' | |
brew install caskroom/cask/brew-cask && brew tap caskroom/versions | |
echo 'Installing ssh' | |
brew install libssh | |
echo 'Installing npm and node' | |
curl "https://nodejs.org/dist/latest/node-${VERSION:-$(wget -qO- https://nodejs.org/dist/latest/ | sed -nE 's|.*>node-(.*)\.pkg</a>.*|\1|p')}.pkg" > "$HOME/Downloads/node-latest.pkg" && sudo installer -store -pkg "$HOME/Downloads/node-latest.pkg" -target "/" | |
echo 'Installing nvm' | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash | |
echo 'Installing zsh and oh-my-zsh' | |
brew install zsh zsh-completions && chsh -s $(which zsh) && sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
echo 'Installing sublime text' | |
brew cask install sublime-text && ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl | |
echo 'Installing gulp, grunt, webpack' | |
npm install gulp-cli grunt-cli webpack -g | |
echo 'Installing yarn' | |
brew install yarn | |
echo 'Installing git-flow' | |
brew install git-flow | |
echo 'Toggle hidden files visualization' | |
defaults write com.apple.finder AppleShowAllFiles YES | |
echo 'Updating Ruby' | |
curl https://gist.githubusercontent.com/DirtyF/5d2bde5c682101b7b5d90708ad333bf3/raw/bbac59647ac66016cf443caf7d48c6ae173ae57f/setup-rbenv.sh | bash | |
echo 'Creating projects directory' | |
mkdir -p ~/Projects | |
echo 'Ready.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment