-
Notifications
You must be signed in to change notification settings - Fork 0
/
.brewfile
204 lines (165 loc) · 4.33 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
# file location: ~/.brewfile
# brew bundle --file=".brewfile"
##############################################################
##### Settings
# set arguments for all 'brew cask install' commands
cask_args appdir: '/Applications', no_quarantine: true
# java_present = system('/usr/libexec/java_home --failfast')
is_arm = Hardware::CPU.arm? # TODO: All lines that are based on this condition are currently not working for ARM architecture - and thus this check
tap "homebrew/bundle"
tap "homebrew/cask-fonts"
tap "kaushikgopal/tools"
tap "buo/cask-upgrade" # better cask upgrading (see `cu`)
##############################################################
##### CLI tools
brew "bat"
brew "coreutils" # for gnu date
brew "curl"
brew "fd"
brew "ffmpeg"
brew "gawk"
brew "gnupg" # "openssl"
brew "gum"
brew "htmltest"
brew "httpie"
brew "hugo"
brew "imagemagick"
brew "mas"
brew "neofetch"
brew "node"
brew "openssl"
brew "pgcli"
brew "poppler"
brew "powerlevel10k"
brew "renameutils" # bulk renaming / copying
brew "ripgrep"
brew "rsync"
brew "sox"
brew "xmlstarlet" # fine-grain xml manipulation
# brew "neovim"
# brew "briss" # pdf cropping tool
# brew "exa"
#brew "fzf"
# brew "tmux"
# brew "exiftool"
# brew "eye-d3"
brew "trash"
brew "tree"
brew "wget"
#brew "youtube-dl"
brew "yt-dlp"
brew "zoxide"
brew "zsh-autosuggestions" # fish like suggestions (from history + completions)
brew "zsh-syntax-highlighting" # fish like syntax highlighting
# brew "zsh-completions" # autocomplete candidates (without tab) - DOESN'T WORK
##############################################################
##### development
#############
##### general
brew "gh"
brew "git-delta"
brew "git-lfs"
brew "git"
brew "github-keygen"
brew "foreman" # starting multiple processes concurrently
# brew "docker-compose"
# brew "docker-credential-helper-ecr"
# cask "docker"
######################
##### android (zulu)
# tap "mdogan/zulu" # use sdk man
# cask "zulu-jdk17" # use sdk man
# brew "kotlin" # use sdk man
# brew "gradle" # use sdk man
brew "scrcpy"
tap "sdkman/tap"
brew "sdkman-cli"
#########
##### .rb
# brew "asdf"
# brew "ruby-build"
brew "rbenv"
# brew "ruby-install"
brew "postgresql"
######################
##### .py
# brew "pyenv"
# brew "pyenv-virtualenv"
# brew "python-tabulate"
# brew "[email protected]"
brew "python3" # caper local mock server
brew "python-yq" # caper local mock server
######################
##### go
brew "go"
######################
##### fly.io
brew "flyctl"
######################
##### work
brew "bazelisk"
brew "pipx"
#cask "orbstack"
brew "grpcurl" # caper
##############################################################
##### Mac apps
cask "1password"
cask "1password-cli" # required for Raycast/Alfred integration
cask "cursor"
cask "google-chrome"
cask "google-drive"
cask "imageoptim"
cask "jetbrains-toolbox"
cask "netnewswire"
cask "notunes"
cask "obsidian"
cask "raycast"
cask "slack"
cask "tailscale"
cask "the-unarchiver"
cask "warp"
cask "webpquicklook"
#cask "keyboard-maestro"
#cask "loopback"
#cask "soundsource"
#cask "superduper"
#cask "soulver"
#cask "visual-studio-code"
cask "font-inter"
cask "font-geist"
cask "font-sf-pro" # obsidian notes
cask "font-sf-compact"
cask "font-sf-mono"
# cask "font-source-code-pro" # install otf directly from Adobe
# cask "font-source-sans-3" # install otf directly from Adobe
# cask "font-geist-mono"
# cask "font-ia-writer-duo"
# cask "font-ibm-plex-mono-kg"
# cask "font-recursive-kg"
# cask "font-roboto-mono"
# cask "font-cascadia-code"
# cask "font-cascadia-code-pl"
# cask "font-ia-writer-mono"
# cask "font-ia-writer-quattro"
# cask "font-ibm-plex"
# cask "font-ibm-plex-mono"
# cask "font-ibm-plex-sans"
# cask "font-ibm-plex-serif"
# cask "font-new-york"
# cask "visual-studio-code"
# mas "iA Writer", id: 775737590
# mas "Xcode", id: 497799835
# mas "Hand Mirror", id: 1502839586
# mas "Things 3", id: 904280696
##############################################################
##### goku
tap "candid82/brew"
tap "yqrashawn/goku"
cask "karabiner-elements"
brew "yqrashawn/goku/goku"
##############################################################
##### Helpful commands
# https://gist.github.com/ChristopherA/a579274536aab36ea9966f301ff14f3f
# track transitive dependencies
# brew deps --tree --installed asdf
# see ~/.brew.sh for more commands