I bought a new iMac recently and figured it would be worthwhile to write down everything I did to get it to where I wanted it. Install bootstraps: Chrome – Preferred browser Iterm2 – Terminal Homebrew – The missing package manager Atom – Text editor for code Install brew packages and ruby
1 2 3 4 5 6 7 8 9 |
brew install mysql git ruby-build rbenv powder rbenv init rbenv install -l rbenv install 2.3.1 rbenv global 2.3.1 rbenv rehash gem update --system gem install bundler powder install |
Configure git
1 2 3 |
git config --global core.editor "atom --wait" git config --global user.name "Oliver Roup" git config --global user.email "oroup@oroup.com" |
Copy across SSH keys […]
Recent Comments