-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
55 lines (51 loc) · 1.08 KB
/
Brewfile
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# REFERENCES:
#
# - https://pumpingco.de/blog/brewfile
# - https://medium.com/@satorusasozaki/automate-mac-os-x-configuration-by-using-brewfile-58a78ce5cc53
# Specify --cask arguments
cask_args appdir: '/Applications', fontdir: '~/Library/Fonts'
# Add additional repositories not in the official homebrew formulae
tap 'dopplerhq/cli'
tap 'homebrew/bundle'
tap 'homebrew/cask' || true
tap 'homebrew/cask-versions'
tap 'homebrew/core'
tap 'homebrew/services'
# Install packages
brew 'autoenv'
brew 'certbot'
brew 'composer'
brew 'curl'
brew 'dopplerhq/cli/doppler'
brew 'gh'
brew 'gist'
brew 'git'
brew 'git-lfs'
brew 'glab'
brew 'gnupg'
brew 'gpg2'
brew 'jq'
brew 'nvm'
brew 'openjdk'
brew 'openssl@3'
brew 'php'
brew 'pinentry-mac'
brew 'python'
brew 'rcmdnk/file/brew-file'
brew 'terminal-notifier'
brew 'tree'
brew 'vercel-cli'
brew 'yarn'
brew 'zsh'
# Casks
cask 'adobe-creative-cloud'
cask 'docker'
cask 'chromium'
cask 'firefox-developer-edition'
cask 'gitkraken'
cask 'google-chrome'
cask 'google-cloud-sdk'
cask 'mysqlworkbench'
cask 'slack'
cask 'spotify'
cask 'visual-studio-code-insiders'