-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew.sh
44 lines (38 loc) · 989 Bytes
/
brew.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
#!/usr/bin/env bash
# Fetch the newest version of homebrew
brew update
# Upgrade outdated casks and formulae
brew upgrade
# Install binaries
brew install autojump
brew install awscli
brew install dockutil
brew install gh
brew install git
brew install postgresql
brew install starship
brew install terraform
brew install tree
brew install zsh-autosuggestions
brew install zsh-syntax-highlighting
# Install macOS applications
brew install --cask 1password
brew install --cask docker
brew install --cask figma
brew install --cask firefox
brew install --cask github
brew install --cask google-chrome
brew install --cask iterm2
brew install --cask loom
brew install --cask notion
brew install --cask rectangle
brew install --cask slack
brew install --cask spotify
brew install --cask tableplus
brew install --cask visual-studio-code
brew install --cask zoom
# Install fonts
brew tap homebrew/cask-fonts
brew install font-input
# Remove stale lock files and outdated downloads
brew cleanup