Last active
January 8, 2019 15:21
-
-
Save samberic/4bc1c726df934dccb307 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# to auto-run: | |
# curl -fsSL https://gist.github.com/samberic/4bc1c726df934dccb307/download | tar -xf- && bash 4bc1c726df934dccb307*/setup.sh && rm -r 4bc1c726df934dccb307* | |
##### Preparations ##### | |
#----------------------- | |
# Description is available at http://mlayer.org/tech/2014/11/25/setup-mac-os-x.html | |
# install homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew install caskroom/cask/brew-cask # makes available to install apps as packages | |
brew tap caskroom/versions # for beta version available through cask | |
# this will install rmtree feature for brew to uninstall packages with dependecies | |
brew tap beeftornado/rmtree && brew install beeftornado/rmtree/brew-rmtree | |
##### Software installing ##### | |
#------------------------------ | |
# Misc | |
brew cask install google-chrome | |
brew cask install dropbox | |
brew cask install google-drive | |
brew cask install telegram | |
brew cask install viber | |
brew cask install skype | |
brew cask install twitter | |
brew cask install steam | |
# Utilites | |
brew cask install iterm2 | |
#ibrew install tmux | |
brew cask install spotify | |
#curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh | |
brew cask install alfred | |
#brew cask install bartender | |
brew cask install evernote | |
#brew cask install the-anarchiver | |
brew cask install virtualbox | |
brew cask install vagrant | |
brew cask install boot2docker | |
brew cask install vlc | |
brew cask install cyberduck | |
#brew cask install ynab | |
#brew cask install android-file-transfer | |
#brew cask install divvy | |
#brew cask install fantastical | |
#brew install tree | |
#brew install ffmpeg | |
#brew cask install cleanmymac | |
#brew cask install kid3 | |
brew install wget | |
brew install maven | |
#dev | |
#brew cask install genymotion | |
brew cask install github | |
#brew cask install java | |
#brew install leiningen | |
# For jenv don't forget to add to you profile: | |
# export PATH="$HOME/.jenv/bin:$PATH" | |
# eval "$(jenv init -)" | |
#brew install jenv | |
brew install gradle | |
brew install scala | |
brew install sbt | |
brew cask install intellij-idea-ce | |
brew cask install android-studio | |
brew cask install dash | |
brew install rbenv | |
brew install ruby-build # don't forget to add to you profile: eval "$(rbenv init -)" | |
brew cask install ngrok | |
brew install mongodb | |
brew cask install mongodbpreferencepane | |
brew install node | |
# if you don't need sublimelinter plugins for js/css/json comment next 2 lines | |
npm install -g jshint | |
npm install -g csslint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment