-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathBrewfile
157 lines (108 loc) · 2.44 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
# frozen_string_literal: true
# Dual Panel File Browser
cask 'marta'
# Fast GPU rendered terminal emulator
cask 'wezterm'
# best screenshot tool on mac
cask 'cleanshot'
# setup a hyper key modifier
cask 'hyperkey'
# note taking app and Zettlekasten
cask 'obsidian'
# spotlight alternative
cask 'raycast'
# a terminal emulator (used primarily for wrapping terminal apps)
cask 'iterm2'
# allow accessing passwords from a CLI
cask '1password/tap/1password-cli'
# macOS automation using Lua
cask 'hammerspoon'
# for Erlang
brew 'wxwidgets'
brew 'autoconf'
brew 'fop'
brew 'libiodbc'
brew 'openjdk'
# for generating graphics
brew 'graphviz'
# code stats
brew 'scc'
# SQLite3
brew 'sqlite'
# image manipulation
brew 'imagemagick'
# html querying aka hq
brew 'htmlq'
# easily copy tabular data
brew 'yank'
# format postgres sql files
brew 'pgformatter'
# Postgres pager
brew 'pspg'
# Postgres client
brew 'libpq'
# compile C stuff
brew 'cmake'
# c++ compiler
brew 'gcc'
# source control
brew 'git'
# GTags for use in Vim
brew 'global'
# Encryption + verification of signed downloads
brew 'gnupg'
# keep grep up to date
brew 'grep'
# show active process and their telemetry
brew 'btop'
# docker desktop for containers
cask 'docker'
# build tool
brew 'make'
# terminal multiplexer
brew 'tmux'
# vimium like jumps in tmux
tap 'morantron/tmux-fingers'
brew 'morantron/tmux-fingers/tmux-fingers'
# download files from the terminal, used by some scripts
brew 'wget'
# Reattach process (e.g., TMux) to background
brew 'reattach-to-user-namespace'
# display system info
brew 'neofetch'
# OpenSSL - important for compiling things that support SSL
brew '[email protected]'
# linter for bash scripts
brew 'shellcheck'
# keep ZSH up to date
brew 'zsh'
# required by ccls
brew 'llvm'
# the watch command
brew 'watch'
# set default application for opening files on mac
brew 'duti'
# for Nerves
brew 'xz'
brew 'pkg-config'
brew 'squashfs'
brew 'fwup'
# GNU File, Shell, and Text utilities (also required by Nerves)
# https://www.gnu.org/software/coreutils
brew 'coreutils'
# a modern API client with a friendly DX
brew 'httpie'
# a more up to date version of curl than what macOS offers
brew 'curl'
# run things in parallel
brew 'parallel'
# ask questions in natural language and get results in the terminal
brew 'howdoi'
# pretty text display utils
brew 'figlet'
# Mac App Store CLI
brew 'mas'
# for formatting XML files
brew 'xq'
# better shell completions
brew 'carapace'