-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbrew.sh
More file actions
90 lines (73 loc) · 3.04 KB
/
brew.sh
File metadata and controls
90 lines (73 loc) · 3.04 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
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
brew update
brew upgrade
###############################################################################
# Core utilities #
###############################################################################
brew install coreutils
brew install moreutils
brew install findutils
brew install bash
brew install bash-completion@2
brew install wget
brew install vim
brew install grep
brew install openssh
brew install tree
###############################################################################
# Development tools #
###############################################################################
brew install git
brew install gh
brew install neovim
brew install asdf
brew install gitleaks
brew install cloc
###############################################################################
# Modern CLI replacements #
###############################################################################
brew install ripgrep # grep replacement
brew install fd # find replacement
brew install bat # cat replacement
brew install zoxide # cd replacement
brew install fzf # fuzzy finder
brew install jq # JSON processor
brew install lazygit # git TUI
brew install gum # interactive shell scripts
###############################################################################
# Terminal & multiplexer #
###############################################################################
brew install zellij
brew install spaceship
###############################################################################
# Networking & security #
###############################################################################
brew install nmap
brew install doggo
brew install tailscale
###############################################################################
# Media #
###############################################################################
brew install imagemagick
brew install ffmpeg
brew install jpeg
brew install x264
###############################################################################
# Monitoring #
###############################################################################
brew install htop
brew install glances
brew install ctop
###############################################################################
# Utilities #
###############################################################################
brew install tldr
brew install terminal-notifier
brew install bruno
brew install models
brew install w3m
brew install ack
brew install pinentry-mac
# Clean it up.
brew cleanup