Skip to content

Instantly share code, notes, and snippets.

@juliobitencourt
Forked from zenorocha/.hyper.js
Last active May 7, 2019 14:43
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save juliobitencourt/067aef1d01158c39cd6d to your computer and use it in GitHub Desktop.
Save juliobitencourt/067aef1d01158c39cd6d to your computer and use it in GitHub Desktop.

Setup Mac OS X (Sierra)

1. Run Software Update

Make sure everything is up to date.

2. Install Xcode and its "Command Line Tools"

  1. Go to App Store and install Xcode.

3. Install Softwares

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

First install Homebrew

then execute this shell script

curl -L https://gist.githubusercontent.com/juliobitencourt/067aef1d01158c39cd6d/raw/62f8288eff589c41ecaee0973ef4448c704eb823/softwares.sh | sh

Cask symlinks the softwares in /opt/homebrew-cask/Caskroom/ to /Applications.

What's included?

Development
Browser
Other

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

App Store

4. 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/

5. Configure Sublime Text

Install Package Control.

Plugins

Install packages via Package Control:

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

6. Install Composer

Just follow the docs at getcomposer.org

7. Install Laravel Homestead

Just follow the docs at laravel.com

8. Profit!

:)

#!/bin/sh
# homebrew-cask
brew install caskroom/cask/brew-cask
# alfred
brew cask install alfred
## Development
brew cask install iterm2
# oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Remove the "Last login" Message from the Terminal
touch .hushlogin
brew cask install sublime-text
brew cask install sequel-pro
brew cask install filezilla
brew cask install virtualbox*
brew cask install vagrant*
# browser
brew cask install google-chrome
brew cask install firefox
# other
brew cask install slack
brew cask install appzapper
brew cask install skype
brew cask install spotify
brew cask install qbittorrent
brew cask install rescuetime
brew cask install vlc
brew cask install licecap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment