-
Notifications
You must be signed in to change notification settings - Fork 0
/
mac.sh
executable file
·66 lines (60 loc) · 847 Bytes
/
mac.sh
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
#!/bin/bash
# if brew not installed, install it
if ! (which brew>/dev/null); then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
else
brew update
fi
formulae=(
ag
bat
ctags
doctl
ffmpeg
fluxctl
fzf
git-lfs
gnupg
golang
htop
hub
istioctl
jq
lazygit
neovim
nmap
pinentry-mac
pipenv
postgresql@15
pyenv
ranger
reattach-to-user-namespace
shellcheck
stow
swig
tidy-html5
tmux
wget
z
zmq
zsh-syntax-highlighting
)
casks=(
1password-cli
docker
figma # graphic design, can skip
gimp
google-chrome
insomnia
iterm2
keybase # public key stuff, can skip
ngrok
notion # cloud notes, can skip
spotify
visual-studio-code
vnc-viewer
)
# Needed before you can install the kafka keg.
brew install --cask homebrew/cask-versions/adoptopenjdk8
brew install "${formulae[@]}"
brew install --cask "${casks[@]}"