Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.42 KB

README.md

File metadata and controls

44 lines (34 loc) · 1.42 KB

Config

Config is a basic checklist I follow to set up a new Mac's development environment. It's based on Mark Otto's config. It's a WIP.

Checklist

1. Prep OS X

  • Download and install latest version of Xcode from the Mac App Store
  • Download and install Xcode command line tools

2. Download dependancies

  • Install Homebrew
  • Install Node
    1. Install NVM brew install nvm.
    2. Install Node nvm install v6.

3. Secure Git(Hub) access

4. Install Atom

  • Download and install Atom
  • Run the Atom > Install Shell Commands menu option
  • Install Sync Settings package apm install sync-settings
  • Enter a Personal Access Token with the gist scope
  • Copy gist id from your gists to Sync Settings configuration
  • Run sync-settings:restore from the command palette

5. Map a key to

Create a DefaultKeyBinding.dict file here:

~/Library/KeyBindings/DefaultKeyBinding.dict

Open it and add:

{
  /* Map # to § key*/
  "§" = ("insertText:", "#");
}

Save and restart your Mac.