-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Brewfile
46 lines (43 loc) · 914 Bytes
/
.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
cask_args appdir: '/Applications'
tap 'homebrew/services'
tap 'caskroom/fonts'
if !ARGV.include?("--casks")
brew 'bash'
brew 'tree'
brew 'coreutils'
brew 'fzf'
brew 'ripgrep'
brew 'jq'
brew 'diffutils'
brew 'vim'
brew 'node'
brew 'yarn'
brew 'gradle'
brew 'maven'
brew 'wget'
brew 'nginx'
brew 'redis', restart_services: true
brew 'mysql'
brew 'bash-completion'
brew 'tfenv'
brew 'tmux'
brew 'reattach-to-user-namespace'
brew 'go'
brew 'shellcheck'
end
if ARGV.include?("--casks")
tap 'caskroom/cask'
cask 'java' unless system "/usr/libexec/java_home --failfast"
cask 'google-chrome'
cask 'dropbox'
cask 'alfred'
cask 'slack'
cask 'iterm2'
cask 'spotify'
cask 'sourcetree'
cask 'postman'
cask 'atom'
cask 'sip'
cask 'font-source-code-pro'
cask 'google-cloud-sdk'
end