-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_brew.sh
40 lines (29 loc) · 1.08 KB
/
setup_brew.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env bash
# reference: http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac
###############################################################################
# Ask for the administrator password upfront.
sudo -v
# Keep-alive: update existing `sudo` time stamp until the script has finished.
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
###############################################################################
# HOMEBREW
###############################################################################
###############################################################################
# Install Brew
# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Update homebrew recipes
brew update
# Upgrade any already-installed formulae.
brew upgrade --all
brew install tig
brew install git-extras
brew install zsh
brew install tmux
brew install emacs
brew install docker
brew install nvm