Skip to content

Instantly share code, notes, and snippets.

@chrisbodhi
Last active July 25, 2016 14:48
Show Gist options
  • Select an option

  • Save chrisbodhi/bc310922f487950c74e201134e52fa63 to your computer and use it in GitHub Desktop.

Select an option

Save chrisbodhi/bc310922f487950c74e201134e52fa63 to your computer and use it in GitHub Desktop.
Dev Env Setup

#Dev Env Setup

###Starting with the command line

  1. Fire up your Terminal
  2. After you verify that Ruby is installed [ruby -v], install Homebrew by running ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" in your terminal
  3. To use Brew to install your desktop applications [Slack, Sublime Text, &c.], run brew install caskroom/cask/brew-cask
    • [optional] brew cask install iterm2 and hop over to iTerm2
    • [optional] Install oh-my-zsh by running sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" and follow the configuration instructions
  4. Install node.js & npm using the instructions found here to avoid global package & sudo nonsense
  5. Install n.

###Knock out that desktop applications Start installing your desktop applications: - brew cask install slack - brew tap caskroom/versions && brew cask install sublime-text3 - brew cask install evernote - brew cask install dropbox

###Sublime Text 3 Installation & Config

  1. Install the Package Manager by following these instructions
  2. This post could help you get started in configuring your ST3
    • [optional] Install the packages GitGutter, Pretty JSON, SidebarEnhancements
  3. Install SublimeLinter
  4. Install ESLint
  5. Install the package Babel using the Package Installer
    • Open any JavaScript file
    • In the bottom right, click on “JavaScript"
    • At the top of the list that pops up, select “Open all with current extension as..."
    • From the “Babel” menu item, select “JavaScript (Babel)"
  6. Make sure you’ve had something to eat and taken a stroll.

###Git! Time to configure git! [optional] Install Hub: brew install hubmore info

  1. Set your user info in the command line: git config --global user.email “YER_EMAIL_AT_OL_DOT_COM"
  2. Set up your SSH keys for use in the command line with Github, like so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment