Skip to content

Instantly share code, notes, and snippets.

@jpvelez
Last active December 30, 2015 02:39
Show Gist options
  • Save jpvelez/7764306 to your computer and use it in GitHub Desktop.
Save jpvelez/7764306 to your computer and use it in GitHub Desktop.
Shell scripts for bootstrapping a new Mac. Downloads and install dotfiles, unix tools, and native apps.
# Navigate to home folder
cd ~
# Install homesick
sudo gem install homesick
# Download dotfiles repo
homesick clone git://github.com/jpvelez/dotfiles.git
# git clone https://github.com/jpvelez/dotfiles.git
# Move dotfiles into ~
homesick symlink dotfiles
# Run .osx file to configure Mac OSX
chmod 755 .osx
./.osx
# Install homebrew
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
brew doctor
# Use homebrew to install unix tools
chmod 755 .brew
brew bundle .brew
# Install homebrew cask, macosx apps
chmod 755 .cask
./.cask
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment