Config is a basic checklist I follow to set up a new development environment. It gets me up to speed with Git, GitHub, and more so I can more quickly get back to coding.
File | Description |
---|---|
.zshrc |
Customizes the zsh prompt. |
.gitconfig |
Global Git configuration to specify my name and email, shortcuts, colors, and more. |
.gitignore |
The ignore file. |
Preferences.sublime-settings |
My Sublime Text 3 user preferences. |
Package Control.sublime-settings |
My Sublime Text 3 packages. |
- Download and install latest version of Xcode from the Mac App Store
- Download and install Xcode command line tools
- Download and run the Node.js Mac installer
- Download and "install" composer :
curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer
- Install Grunt command line tools:
npm install -g grunt-cli
- Generate new SSH key
- Generate an access token for Terminal to auth your GitHub account when 2FA is enabled
- Install
iTerm2
- Install
Oh-my-zsh
- Load
.zshrc
- (Install
agnoster theme
) - Install
a powerline patched font
- Load
.gitconfig
contents into the global~/.gitconfig
- Load
.gitignore
contents into the global~/.gitignore
- Install
Package Control
- Load packages from [
Package Control.sublime-settings
](/Package Control.sublime-settings) - Load user settings from
Preferences.sublime-settings