-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathBrewfile
More file actions
146 lines (102 loc) · 2.33 KB
/
Brewfile
File metadata and controls
146 lines (102 loc) · 2.33 KB
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
# 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-cli'
# run open source LLM models locally
cask 'ollama-app'
# primary terminal app
cask 'ghostty'
# 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'
# 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 alternative for mac - fast and battery efficient
cask 'orbstack'
# build tool
brew 'make'
# process video files (used by yazi, but also ffmpeg is very useful in general)
brew 'ffmpeg'
brew 'ffmpegthumbnailer'
# vimium like jumps in tmux
tap 'morantron/tmux-fingers'
brew 'morantron/tmux-fingers/tmux-fingers'
# sudo with touch id
tap 'dkarter/tap'
brew 'dkarter/tap/sudo-touchid'
# sudo touch id support for tmux
brew 'pam-reattach'
# download files from the terminal, used by some scripts
brew 'wget'
# OpenSSL - important for compiling things that support SSL
brew 'openssl'
# 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 more up to date version of curl than what macOS offers
brew 'curl'
# run things in parallel
brew 'parallel'
# pretty text display utils
brew 'figlet'
# Mac App Store CLI
brew 'mas'