Last active
December 30, 2015 02:39
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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