-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
167 lines (134 loc) · 2.74 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
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# A file that lists the:
# - Brew taps to add
# - Brew formulae to install
# - MacOS apps to install
#
# To install what is listed in this file:
# brew bundle
#
# Sources:
# - https://openfolder.sh/macos-migrations-with-brewfile
# - https://github.com/Homebrew/homebrew-bundle
# - https://robots.thoughtbot.com/brewfile-a-gemfile-but-for-homebrew
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
#~~~~~~~~~~~~~~~~~~~~
# Brew Taps (Sources)
#~~~~~~~~~~~~~~~~~~~~
tap "1password/tap"
tap "espanso/espanso"
tap "heroku/brew"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-versions"
tap "homebrew/core"
tap "homebrew/services"
tap "theseal/ssh-askpass"
tap "thoughtbot/formulae"
# tap "universal-ctags/universal-ctags"
#~~~~~~~~~~~~~~~~~~~~
# Brew Formulae (Packages)
#~~~~~~~~~~~~~~~~~~~~
brew 'ansifilter'
brew 'asciinema'
brew 'awscli'
brew 'autoconf'
brew 'automake'
#
# colorful diffs (alias diff='colordiff -u')
brew 'colordiff'
brew 'coreutils'
brew 'ctags'
brew 'curl'
brew 'diff-so-fancy'
brew 'direnv'
brew 'dos2unix'
brew "espanso"
brew "extract_url"
brew 'font-meslo-lg-nerd-font'
brew 'frum'
brew 'fswatch'
# Fuzzy File finder
brew 'fzf'
brew "fpp"
# Github CLI
brew 'gh'
brew 'git'
brew 'git-extras'
brew 'git-flow-avh'
brew 'git-subrepo'
brew 'gnupg'
brew 'heroku/brew/heroku'
brew 'htop'
brew 'httrack'
# Github CLI interface
brew 'hub'
# sed for json: https://robots.thoughtbot.com/jq-is-sed-for-json
brew 'jq'
brew 'lazygit'
brew 'mas' # Mac AppStore CLI
brew 'md5sha1sum'
# Sniff network trafic
brew 'ngrep'
brew 'numpy'
brew 'neovim'
brew 'node'
# Procfile manage: a foreman++
brew 'overmind'
brew 'openssl'
#egrep for processes
brew 'pgrep'
brew 'pstree'
# Shell Prompt Theme
# brew 'rbenv'
# brew 'rbenv-binstubs'
# brew 'rbenv-bundler'
# brew 'rbenv-ctags'
# brew 'rbenv-default-gems'
brew 'readline'
brew 'redis', restart_service: true
# For tmux to handle clipboard
brew 'reattach-to-user-namespace'
brew 'rg'
brew 'ruby-build'
brew 'sqlite3'
brew 'starship'
brew 'theseal/ssh-askpass/ssh-askpass'
# Dotfiles Installer
brew 'thoughtbot/formulae/rcm'
# lightning fast search (ag)
brew 'the_silver_searcher'
brew 'tmux'
brew 'tree'
brew 'urlview'
brew 'vim'
brew 'watch'
brew 'yarn'
brew 'xz'
brew 'zlib'
brew 'zoxide'
brew 'zsh'
brew 'zsh-syntax-highlighting'
brew 'zsh-autosuggestions'
#~~~~~~~~~~~~~~~~~~~~
# MacOS Applications
#~~~~~~~~~~~~~~~~~~~~
mas 'Things', id: 904280696
# ~~~~~~~~
# Casks
# ~~~~~~~~
cask '1password-cli'
cask 'docker'
cask 'iterm2'
cask 'karabiner-elements'
cask 'keycastr'
cask 'lepton'
cask 'notunes'
cask 'obsidian'
cask 'postman'
cask 'spotify'
cask 'sublime-text'
cask 'vlc'
cask 'wezterm"'
cask 'zoom'