Skip to content

Instantly share code, notes, and snippets.

@annacruz
Forked from zenorocha/.hyper.js
Last active January 4, 2016 01:49
Show Gist options
  • Save annacruz/8550900 to your computer and use it in GitHub Desktop.
Save annacruz/8550900 to your computer and use it in GitHub Desktop.

Based on Zeno Rocha Osx Setup

Setup Mac OS X

When you have a new MacBook...

First of all backup everything with Time Machine or in another way.

1. Run Software Update

Make sure everything is up to date.

Software Update

2. Install Xcode and its "Command Line Tools"

  1. Go to App Store and install Xcode.
  2. Open and accept the terms
  3. Then go to the terminal and install "Command Line Tools":
xcode-select --install

Notice this only works for Mac OS X Mavericks (10.9). For earlier versions, continue to use the in-app download in Xcode.

3. Install Homebrew

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

4. Install Dotfiles

Visit Zeno Dotfiles repo for instructions.

This will install some useful stuff like zsh shell and lots of plugins using oh-my-zsh. Besides that, it will also set a new theme and some useful aliases for the terminal.

5. Install Softwares

Many softwares can be installed through homebrew-cask which makes the process way simpler:

curl -L https://gist.github.com/annacruz/8550900/raw/softwares.sh | sh

Just make sure to move all apps from /opt/homebrew-cask/Caskroom/ to /Applications. And to remove all installations files from /Library/Caches/Homebrew.

What's included?

Browser
Development
Other

Unfortunately some apps aren't available through homebrew-cask, so you need to install it manually.

App Store
Manually
Non-dev

6. Generate SSH keys for GitHub

Visit GitHub's official guide for instructions.

From that point on you're going to be able to do some git operations with GitHub \o/

7. Configure Sublime Text

Visit Sublime Text preferences repo of Zeno for instructions.

There you can find the whole list of plugins, preferences and snippets.

8. Set NPM user

npm adduser yui

9. Profit!

:)

#!/bin/sh
# homebrew-cask
brew tap phinze/homebrew-cask
brew install brew-cask
# browser
brew cask install google-chrome
brew cask install opera-next
# development
brew cask install filezilla
brew cask install kaleidoscope
brew cask install iterm2
brew cask install sourcetree
brew cask install virtualbox
# other
brew cask install alfred
brew cask install dropbox
brew cask install copy
brew cask install mou
brew cask install skype
brew cask install spotify
brew cask install u-torrent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment