-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
26 lines (21 loc) · 936 Bytes
/
Copy pathBrewfile
File metadata and controls
26 lines (21 loc) · 936 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
# ============================================================
# Brewfile — macOS development environment
# Install everything: brew bundle
# ============================================================
# --- Shell & Terminal ---
brew "bash" # Bash 4+ (macOS ships 3.2)
brew "bash-completion@2" # Bash completions framework
# --- Core Dev Tools ---
brew "git"
brew "vim"
# --- Search & Navigation ---
brew "fzf" # Fuzzy finder (Ctrl+R history, Ctrl+T files)
brew "ripgrep" # Fast grep replacement
brew "fd" # Fast find replacement
# --- Node.js ---
brew "fnm" # Fast Node Version Manager (Homebrew-friendly)
# --- Utilities ---
brew "tree" # Directory tree view
brew "htop" # Process viewer
brew "wget" # curl alternative
brew "jq" # JSON processor