OSX setup
#!/bin/bash | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
brew update | |
brew upgrade | |
brew tap homebrew/versions | |
brew tap phinze/homebrew-cask | |
brew install midnight-commander wget git git-flow curl redis node phantomjs ssh-copy-id | |
brew cask install alfred dash dropbox google-drive sublime-text firefox google-chrome | |
brew cask install iterm2 xnviewmp imageoptim skype utorrent virtualbox vagrant audacity | |
brew cask install evernote intellij-idea-ce rescuetime the-unarchiver sequel-pro texturepacker | |
brew cask install testflight | |
brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup | |
curl -L http://install.ohmyz.sh | sh | |
#install rest soft from AppStore (omnifocus, iramdisk) | |
#https://bitbucket.org/nut_code_monkey/ssgenerator | |
sudo gem install cocoapods | |
#set tracking speed (for magic mouse), common mouse is fine | |
defaults write -g com.apple.mouse.scaling 10 | |
#remove spotlight - we are using Alfred, so spotlight is useless. | |
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist | |
sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search | |
sudo killall SystemUIServer | |
#change git default editor | |
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl | |
git config --global core.editor "subl -n -w" | |
#for ponydebugger | |
sudo easy_install pip | |
# activate your virtualenv | |
source ~/Library/PonyDebugger/bin/activate | |
# update the ponyd source | |
pip install -U -e git+https://github.com/square/PonyDebugger.git#egg=ponydebugger --allow-external pybonjour --allow-unverified pybonjour | |
# updates chrome dev tools source | |
ponyd update-devtools |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment