forked from chrispappas/dev-workstation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Brewfile
75 lines (60 loc) · 900 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
cask_args appdir: '/Applications'
# taps
tap 'caskroom/homebrew-cask' || true
tap 'homebrew/core' || true
# version control
brew 'git'
brew 'git-crypt'
brew 'hub'
# shell
brew 'bash-completion'
# languages
brew 'node'
brew 'go'
brew 'php71'
brew 'php56'
brew 'python3'
brew 'rbenv'
brew 'ruby-build'
# package managers
brew 'composer'
brew 'yarn'
# databases
brew 'mysql'
brew 'redis'
cask 'sequel-pro'
# messaging
brew 'rabbitmq'
# editors
brew 'vim'
cask 'phpstorm'
cask 'sublime-text'
cask 'visual-studio-code'
# utilities
brew 'tmux'
brew 'tree'
brew 'socat'
brew 'wget'
brew 'fzf'
brew 'watch'
brew 'ag'
brew 'jq'
brew 'grip'
brew 'direnv'
brew 'fasd'
brew 'tig'
brew 'nano'
brew 'openssl'
cask 'google-cloud-sdk'
cask 'spectacle'
cask 'skitch'
cask 'ngrok'
cask 'docker'
brew 'kubernetes-cli'
# fun
cask 'spotify'
# terminal
cask 'iterm2'
# web
cask 'google-chrome'
cask 'slack'