-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
151 lines (126 loc) · 4.06 KB
/
Copy pathBrewfile
File metadata and controls
151 lines (126 loc) · 4.06 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
147
148
149
150
151
# Brewfile - Homebrew Bundle
# Install with: brew bundle [--file=Brewfile]
# Generated from current setup + recommendations
# ============================================
# Taps
# ============================================
tap "homebrew/bundle"
tap "homebrew/cask-fonts"
# ============================================
# Priority: Password Manager (install first!)
# ============================================
cask "bitwarden"
cask "1password" # Alternative password manager
# ============================================
# CLI Development Tools
# ============================================
# Version Control & Git
brew "git"
brew "gh" # GitHub CLI
brew "git-crypt"
# Shell & Terminal Enhancements
brew "zsh-autosuggestions"
brew "zsh-completions"
brew "zsh-syntax-highlighting"
brew "starship" # Shell prompt
brew "tmux" # Terminal multiplexer
brew "hstr" # Better shell history
# Node.js & JavaScript
brew "nvm" # Node version manager
brew "pnpm" # Fast package manager
# Ruby
brew "rbenv"
brew "ruby-build"
# Python
brew "python@3.13"
brew "python@3.12"
brew "python@3.11"
brew "python@3.10"
brew "uv" # Fast Python package installer
brew "ruff" # Fast Python linter
# Go
brew "go"
brew "golangci-lint"
# Database Tools
brew "postgresql@16"
brew "cockroach"
brew "turso"
brew "sqld"
# DevOps & Infrastructure
brew "ansible"
brew "mkcert" # Local SSL certificates
brew "cloudflared" # Cloudflare tunnel
brew "flyctl" # Fly.io CLI
brew "pre-commit" # Git hooks framework
brew "direnv" # Environment management
# File & Search Tools
brew "fd" # Better find
brew "the_silver_searcher" # ag - better grep
brew "tree" # Directory tree viewer
brew "wget"
# Other Dev Tools
brew "cmake"
brew "blueutil" # Bluetooth CLI (for your device aliases!)
brew "sentry-cli"
brew "biome" # Fast JS/TS formatter & linter
brew "powershell" # PowerShell Core
# ============================================
# GUI Applications (Casks)
# ============================================
# Editors & IDEs
cask "cursor" # AI-powered editor
cask "visual-studio-code"
cask "sublime-text"
# Browsers
cask "brave-browser"
cask "firefox"
# Consider adding:
# cask "arc" # Modern browser
# cask "google-chrome" # If needed
# Terminal
cask "iterm2"
cask "warp" # Modern terminal with AI
# Development Tools
cask "docker"
cask "dbeaver-community" # Database GUI
cask "ngrok" # Tunneling
# Productivity & Utilities
cask "rectangle" # Window management
cask "slack"
cask "discord"
cask "zoom"
cask "spotify" # Entertainment while coding!
# Cloud Tools
cask "google-cloud-sdk"
cask "tailscale" # VPN mesh networking
# Fonts
cask "font-hack-nerd-font"
# ============================================
# Suggested Additions
# ============================================
# Highly Recommended CLI Tools:
# brew "fzf" # Fuzzy finder (HIGHLY recommended!)
# brew "bat" # Better cat with syntax highlighting
# brew "eza" # Better ls (modern replacement for exa)
# brew "ripgrep" # rg - fastest grep
# brew "jq" # JSON processor
# brew "yq" # YAML processor
# brew "httpie" # Better curl
# brew "tldr" # Simplified man pages
# brew "gh-copilot" # GitHub Copilot CLI
# Recommended Apps:
# cask "raycast" # Spotlight replacement (amazing!)
# cask "obsidian" # Note-taking
# cask "notion" # Workspace
# cask "postman" # API testing
# cask "tableplus" # Better database GUI
# cask "shottr" # Screenshot tool
# cask "cleanshot" # Professional screenshots
# cask "karabiner-elements" # Keyboard customization
# ============================================
# Notes
# ============================================
# - Uncomment suggested additions as needed
# - Keep this file in version control
# - Run `brew bundle dump --force` to regenerate from current system
# - Run `brew bundle cleanup` to remove unlisted packages