-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
210 lines (164 loc) · 3.91 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# NOTE: Install Dropbox and let it sync before running this
# Foundations {{{
brew "zsh"
brew "tmux"
brew "reattach-to-user-namespace"
brew "git"
brew "neovim"
# }}}
# Utils {{{
brew "watch"
# brew install ctags # this is outdated, use below instead for
# https://github.com/universal-ctags/ctags
brew "graphviz"
brew "asciinema"
brew "cheat"
brew "autojump"
brew "sdcv"
brew "hub"
brew "watchman"
brew "pstree" # process tree, like `ps fax`
brew "cloc" # lines of code counter
# minio - S3-compatible interface client
# https://github.com/minio/mc
# brew install minio-mc
# }}}
# Languages {{{
brew "ruby"
# nvm is so slow 🐢. DO NOT WANT
# maybe someday we'll switch to Nix 🦄
# Installing via brew doesn't allow us to switch versions but at least it's
# not NVM. If we ever need to switch versions, investigate having multiple
# versions with node and switching between them?
brew "nodejs"
brew "yarn"
brew "python3"
brew "golang"
# }}}
# Database {{{
brew "postgres", restart_service: true
# }}}
# Cloud tools, Kubernetes {{{
brew "kubectx"
brew "kubernetes-helm"
brew "terraform"
brew "ngrep"
brew "awscli"
# }}}
# Linter suport {{{
brew "shellcheck"
# }}}
# Security {{{
brew "vault"
brew "git-crypt"
brew "cfssl"
# Note: openssl is keg only and requires an explicit PATH in ~/.zshrc
brew "openssl", link: true
# brew install --force openssl
# brew link --force openssl
# }}}
# json {{{
brew "jq"
brew "jsonnet"
# }}}
# Clojure {{{
brew "leiningen"
brew "boot-clj"
brew "borkdude/brew/clj-kondo"
# }}}
# File searching and management {{{
brew "ag"
brew "ack"
brew "tree"
brew "ripgrep"
brew "fd"
brew "fzf"
# }}}
# Fonts {{{
tap "homebrew/cask-fonts"
cask "font-fira-code"
cask "font-fira-code-nerd-font"
cask "font-meslo-lg"
cask "font-input"
cask "font-menlo-for-powerline"
cask "font-inconsolata"
cask "font-inconsolata-for-powerline"
cask "font-meslo-lg"
cask "font-nixie-one"
cask "font-office-code-pro"
cask "font-pt-mono"
cask "font-source-code-pro"
cask "font-source-sans-pro"
# }}}
# Custom taps {{{
# tap "github/gh/gh"
# brew install github/gh/gh
# brew tap codeclimate/formulae
# brew install codeclimate
# brew tap johanhaleby/kubetail
# brew install kubetail
brew "rcm"
# required by vim tiagofumo/vim-nerdtree-syntax-highlight plugin
# brew tap caskroom/fonts
# brew cask install font-hack-nerd-font
# brew tap unisonweb/unison
# brew install unison-language
# }}}
# Desktop cask apps {{{
# cask "jira-client"
brew "java"
# tap "caskroom/cask"
# tap "caskroom/versions"
# brew cask install zooom # WTF why is this dead
# we'll obtain it from dropbox instead
cask "selfcontrol"
cask "docker"
cask "google-chrome"
# cask google-chrome-canary
cask "iterm2"
# brew cask divvy
cask "spectacle"
cask "spotify"
cask "alfred"
cask "slack"
cask "istat-menus"
# get license from gmail
cask "airfoil"
cask "dash" # docs
cask "virtualbox"
cask "vagrant"
cask "gitter"
cask "gpg-suite"
# cask keybase
# kubernetes IDE
cask "lens"
# alacritty dependencies
# NOTE: no longer using alacritty. using kitty instead
# brew install rustup-init
# rustup-init -y
# # alacritty - a blazing fast gpu-acelerated term
# # brew install --HEAD cema-sp/homebrew-tap/alacritty
# brew tap mscharley/homebrew
# # brew install alacritty
# quicklook
cask "qlcolorcode"
cask "qlmarkdown"
cask "qlprettypatch"
cask "qlstephen"
cask "qlimagesize"
cask "quicklook-csv"
cask "quicklook-json"
cask "epubquicklook"
# brew cask install sharemouse
# toggl time tracking
# brew cask install toggl-beta
# choosy allows configuring which browser to open a URL in
cask "choosy"
# kitty gpu accelerated terminal
cask "kitty"
# keep mac awake
cask "caffeine"
# cask install keybase
cask "discord"
# }}}
# }}}