-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·39 lines (34 loc) · 873 Bytes
/
setup.sh
File metadata and controls
executable file
·39 lines (34 loc) · 873 Bytes
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
#!/usr/bin/env sh
xcode-select --install
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install git
brew install git-flow
brew install git-lfs
brew install nvm
brew install yarn
brew install --cask alfred
brew install --cask forklift
brew install --cask docker
brew install --cask firefox
brew install --cask google-chrome
brew install --cask local
brew install --cask ngrok
brew install --cask postico
brew install --cask rectangle
brew install --cask slack
brew install --cask sourcetree
brew install --cask spotify
brew install --cask visual-studio-code
brew install --cask zoom
modules="
adamvoss.yaml
bungcip.better-toml
dbaeumer.vscode-eslint
eamodio.gitlens
groksrc.haml
vscode-icons-team.vscode-icons
mechatroner.rainbow-csv
"
for module in $modules; do
code --install-extension "$module" || true
done