-
Notifications
You must be signed in to change notification settings - Fork 0
/
brews.sh
executable file
·50 lines (43 loc) · 1.02 KB
/
brews.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
#!/bin/sh
# install brew
if ! [ -x "$(command -v brew)" ]; then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
# arm64 brew
if [ $(uname -m) = "arm64" ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
# basic tools
brew install yq
brew install bat
brew install tree
brew install wget
brew install pwgen
brew install antigen
brew install moreutils
brew install coreutils
brew install source-highlight
# build tools
brew install cmake
brew install python
brew install poetry
brew install pkg-config
# kubernetes
brew install helm
brew install kubectl
brew install minikube
brew install kubectx
# basic apps
brew install --cask dash
brew install --cask iina
brew install --cask clipy
brew install --cask typora
brew install --cask transmission
brew install --cask google-chrome
brew install --cask syntax-highlight
brew install --cask browserosaurus
# dev apps
brew install --cask iterm2
brew install --cask docker
brew install --cask postman
brew install --cask mongodb-compass