-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBrewfile
152 lines (117 loc) · 2.13 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
def group(_name, &block)
yield
end
cask_args appdir: "~/Applications"
tap 'thoughtbot/formulae'
# Install GNU core utilities (those that come with macOS are outdated).
# Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`.
group 'GNU core utilities and replacements' do
brew 'coreutils'
brew 'gnu-sed'
brew 'grep'
brew 'moreutils'
brew 'findutils'
brew 'ripgrep'
brew 'fd' # Find replacement
brew 'gcal'
end
group 'Git utilities' do
brew 'git'
brew 'git-lfs'
brew 'git-delta'
brew 'gh'
end
group 'Version Managers' do
brew 'ruby-build'
brew 'rbenv'
brew 'node-build'
brew 'nodenv'
brew 'pyenv'
brew 'asdf'
brew 'tig'
end
brew 'bash'
brew 'bash-completion2'
brew 'wget'
brew 'grep'
brew 'openssh'
brew 'screen'
brew 'ack'
brew 'imagemagick'
brew 'lua'
brew 'p7zip'
brew 'pigz'
brew 'webkit2png'
brew 'tree'
brew 'pgcli'
brew 'ffmpeg'
brew 'awscli'
brew 'direnv'
brew 'bat'
brew 'hyperfine' # Benchmarking tool
brew 'asciinema'
brew 'blink1'
brew 'ncdu'
brew 'httpie'
brew 'flyctl'
brew 'pango'
# Needed for Rustc
brew 'cmake'
brew 'ninja'
# GNU Calendar to replace cal
# FZF
brew 'fzf'
# Fun Stuff with No Purpose
brew 'cowsay'
brew 'figlet'
brew 'fortune'
brew 'no-more-secrets'
brew 'watch'
brew 'asciiquarium'
# Tmux
brew 'tmux'
brew 'reattach-to-user-namespace'
brew 'rainbarf'
# Security/Yubikey Stuff
brew 'gpg'
brew 'pinentry-mac'
brew 'ykman'
# Vim Stuff
brew 'nvim'
brew 'editorconfig'
brew 'vale'
brew 'python'
# TLDR Man Pages
brew 'tealdeer'
brew 'nnn'
brew 'rustup'
brew 'go'
brew 'gopls'
brew 'knqyf263/pet/pet'
brew 'yarn'
brew 'task'
brew 'hurl'
brew 'glow'
tap 'brianp/homebrew-muxed'
brew 'brianp/homebrew-muxed/muxed_bin'
brew 'caddy'
brew 'nss'
cask 'paintbrush'
cask 'alfred'
cask 'vlc'
cask 'openshot-video-editor'
cask 'alacritty'
cask 'kitty'
cask 'pock'
cask 'dash'
cask 'ngrok'
cask 'obs-websocket'
cask 'obsidian'
cask '1password-cli'
cask 'docker'
cask 'notunes'
# Install Hack Nerd Font
tap 'homebrew/cask-fonts'
cask 'homebrew/cask-fonts/font-hack-nerd-font'
cask 'homebrew/cask-fonts/font-victor-mono-nerd-font'
cask 'homebrew/cask-fonts/font-victor-mono'