Skip to content

Instantly share code, notes, and snippets.

@indapublic
Forked from orlando/mac-setup.md
Created September 21, 2017 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indapublic/c238db547d5528b55cd2cd1334641009 to your computer and use it in GitHub Desktop.
Save indapublic/c238db547d5528b55cd2cd1334641009 to your computer and use it in GitHub Desktop.
Fresh Mac OS Setup

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

  1. Open a terminal window and execute the Homebrew install script:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew doctor

4. Install Homebrew-Cask

brew tap phinze/cask
brew install brew-cask

5. Install Software from App Store

6. Install Software via Homebrew

brew install mackup
brew cask install launchbar

brew cask install dropbox
brew cask install the-unarchiver
brew cask install 1password
brew cask install iterm2
brew cask install the-unarchiver
brew cask install skyfonts
brew cask install sketch
brew cask install mou
brew cask install recordit
brew cask install ondir
brew cask install spotify
brew cask install minecraft
brew cask install battle-net
brew cask install keybase

brew cask install google-chrome
brew cask install firefox

brew cask install macvim
brew cask install gitup
brew cask install sequel-pro
brew cask install postico
brew cask install rdm
brew cask install postman
brew cask install java
brew cask install android-studio
brew cask install dockertoolbox
brew cask install monodraw

brew cask install skype
brew cask install slack

brew install rbenv
brew install rbenv-gemset
brew install nodenv
brew install yarn
brew install golang
brew install python
pip install --upgrade pip

brew install gpg
brew install watchman
brew install graphviz
brew install htop
brew install jq
brew install tmate
brew install ghostscript
brew install imagemagick

brew install postgresql
brew install rabbitmq
brew install redis

brew install terraform
brew install packer
brew install glide

brew tap drone/drone
brew install drone --devel

# Restore configuration files from Dropbox
mackup restore

# Install latest version of Ruby
rbenv install 2.3.0
rbenv global 2.3.0

# Install latest version of Node
nodenv install 5.9.0
nodenv global 5.9.0

7. Install dotfiles and vim configuration

# Install Janus
curl -L https://bit.ly/janus-bootstrap | bash

# Clone dotfiles

git clone git@github.com:orlando/dotfiles.git && cd dotfiles
mv .* ~
cd .. && rm -R dotfiles

8. Install Fonts

Meslo - for Xcode https://github.com/andreberg/Meslo-Font

Bitstream Vera Sans Mono - for iTerm2 and Macvim http://www.fontsquirrel.com/fonts/bitstream-vera-sans-mono

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment