#Mac OS X
#Disable window animations
sudo defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
#Enable repeat on keydown
sudo defaults write -g ApplePressAndHoldEnabled -bool false
#Show path bar in Finder
sudo defaults write com.apple.finder ShowPathbar -bool true
#Disable disk image verification
sudo defaults write com.apple.frameworks.diskimages skip-verify -bool true &&
sudo defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true &&
sudo defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true
#Disable Safari’s thumbnail cache for History and Top Sites
sudo defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2
- 1Password (Dropbox sync)
- Adobe Illustrator
- Adobe Lightroom
- Adobe Photoshop
- AppCleaner
- Base
- Breaktime
- Compass
- Delibar
- Dropbox
- Git
- Google Chrome
- Grunt
- iLife (iPhoto library -> Dropbox sync)
- iWork
- Kaleidoscope
- MAMP Pro
- MacDropAny, tutorial here
- Node.js
- OmniGraffle (Dropbox sync)
- Reeder
- SASS
- Sequel Pro
- Skype, Brief message style
- Sparkbox (Dropbox sync)
- Spectacle
- Spotify
- Sublime Text 2 (Dropbox sync)
- The Unarchiver
- TicToc
- Transmission
- Transmit
- Tweetbot
- XCode
Xcode > Preferences > Downloads > Command Line Tools
curl -L https://get.rvm.io | bash -s stable
rvm install ruby 1.9.3
rvm use --default 1.9.3
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
rm -r ~/.zshrc
ln -s ~/Dropbox/Sync/Dotfiles/.zshrc ~/.zshrc
ln -s ~/Dropbox/Sync/Dotfiles/.oh-my-zsh/themes/richard.zsh-theme ~/.oh-my-zsh/themes/richard.zsh-theme
# Get rid of "Last login" message
touch .hushlogin
Download Solarized Dark Terminal theme from http://ethanschoonover.com/solarized
sudo ln -s /Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl /bin/subl
#Generate SSH key if it doesn't exist
ssh-keygen -t rsa -C "[email protected]"
#Copy SSH key to https://github.com/settings/ssh
subl ~/.ssh/id_rsa.pub
#Test connection
ssh -T [email protected]
#Set Git config values
git config --global user.name "Richard Käll"
git config --global user.email "[email protected]"
git config --global core.editor "subl"
git config --global color.ui true
gem install rails
curl get.pow.cx | sh