-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosx.sh
executable file
·41 lines (36 loc) · 840 Bytes
/
osx.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
41
#!/bin/bash
function setup_osx {
if [[ ! $(type brew) ]]; then
debug "Installing brew..." "${_GRN}"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
debug "Tapping for some kegs..." "${_GRN}"
brew tap thoughtbot/formulae && brew install rcm
debug "Installing all the brew formulas..." "${_GRN}"
brew update
brew install \
ag \
awscli \
bash-completion \
bat \
ctags \
coreutils \
gnupg \
gpg \
hub \
jq \
libyaml \
nmap \
pinentry-mac \
reattach-to-user-namespace \
socat \
tmux \
tree \
watch \
ykman
brew install --cask amethyst
brew install --cask 1password/tap/1password-cli
debug "Run a brew upgrade..." "${_GRN}"
brew upgrade
}