-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathbrew.sh
More file actions
executable file
·42 lines (28 loc) · 917 Bytes
/
brew.sh
File metadata and controls
executable file
·42 lines (28 loc) · 917 Bytes
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
#!/bin/bash
# Install command-line tools using Homebrew
# (Optionally) Turn off brew's analytics https://docs.brew.sh/Analytics
# brew analytics off
# Thematic grouping of currently installed (on-request) packages
PACKAGES=(
# GNU core utilities
coreutils findutils gnu-sed gnu-tar grep gawk
# Shells & Navigation
fish bash-completion z
# Git tools
gh git-delta git-lfs git-filter-repo tig mergiraf
# Search, Text & Modern CLI
the_silver_searcher ripgrep fzf fd bat eza glow jq jdupes datamash pandoc pdfgrep cloc
# Dev Runtimes & Build Tools
deno pnpm rbenv bazel gradle cmake ninja mkcert
# Watchers & Linters
watchexec entr shellcheck
# Media, Networking & Data
ffmpeg yt-dlp exiftool tree rename wget nmap pv pstree
# System & Performance
btop gdu ncdu zstd
# AI
llm
# Graphics, Fonts & Processing
fontforge fonttools vivictpp
)
brew install "${PACKAGES[@]}"