-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
69 lines (62 loc) · 2.26 KB
/
Brewfile
File metadata and controls
69 lines (62 loc) · 2.26 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
# frozen_string_literal: true
tap 'buo/cask-upgrade' # auto-upgrade casks
brew 'bat' # `cat` replacement
brew 'btop' # `htop` replacement
brew 'curl' # CLI for transferring data
brew 'dockutil' # CLI for MacOS Dock management
brew 'eza' # `ls` replacement
brew 'fd' # `find` replacement
brew 'fzf' # Fuzzy finder
brew 'gh' # GitHub CLI
brew 'git' # Version control
brew 'gum' # Go based interactive shell script generator
brew 'gs' # Postscript and PDF interpreter
brew 'htop' # `top` replacement
brew 'imagemagick' # Image processing
brew 'jq' # JSON processor
brew 'just' # Script runner
brew 'lazygit' # Git Terminal UI
brew 'libyaml' # dependency for ruby
brew 'lima' # Linux virtual machine manager
brew 'luarocks' # dependency for nvim
brew 'mas' # Mac App Store
brew 'mise' # dev tool versions, tasks and environment manager
brew 'neovim' # Preferred text editor
brew 'pkl-lsp' # Apple's configuration language server
brew 'podman' # Container management CLI
brew 'podman-compose' # Compose for Podman
brew 'ripgrep' # `grep` replacement
brew 'stow' # Symlink manager
brew 'tectonic' # LaTeX engine
brew 'tmux' # Terminal multiplexer
brew 'uutils-coreutils' # GNU core utilities Rust replacement
brew 'vivid' # `LS_COLORS` generator
brew 'wallpaper' # macOS wallpaper manager
brew 'wget' # GNU Wget
brew 'yazi' # File manager in terminal
brew 'yq' # YAML processor
brew 'zoxide' # `cd` replacement
brew 'zsh' # Shell
cask '1password' # Password manager
cask '1password-cli' # 1Password CLI
cask 'betterdisplay' # Display configuration manager
cask 'claude-code' # AI coding agent
cask 'docker-desktop' # Containerization
cask 'google-chrome' # Browser
cask 'ghostty' # Terminal emulator
cask 'gpg-suite' # GPG keychain
cask 'hammerspoon' # macOS automation
cask 'imageoptim' # Image optimizer
cask 'insomnium' # HTTP Client
cask 'obsidian' # Note-taking
cask 'podman-desktop' # Container management GUI
cask 'wezterm@nightly', args: { no_quarantine: true, greedy_latest: true } # Terminal emulator
mas '1Password for Safari', id: 1_569_813_296
if ENV['HOMEBREW_PROFILE'] == 'personal' # Personal profile
cask 'discord' # Chat
cask 'softraid' # Disk management
cask 'whatsapp' # Messenger
else # Work profile
tap 'snyk/tap' # Snyk tap for security tools
brew 'snyk-cli' # Security scanner
end