forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew.sh
executable file
·46 lines (35 loc) · 1016 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
45
46
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
# Make sure we’re using the latest Homebrew.
brew update
# Upgrade any already-installed formulae.
brew upgrade
# Save Homebrew’s installed location.
BREW_PREFIX=$(brew --prefix)
# Install `wget` with IRI support.
# brew install wget --with-iri
# Install GnuPG to enable PGP-signing commits.
# brew install gnupg
# Install more recent versions of some macOS tools.
# brew install vim --with-override-system-vi
# brew install grep
# brew install openssh
# Install custom stuff
brew install fastlane
brew cask install rectangle
brew install tig
# Install font tools.
# brew tap bramstein/webfonttools
# brew install sfnt2woff
# brew install sfnt2woff-zopfli
# brew install woff2
# Install other useful binaries.
# brew install ack
# brew install git
# brew install git-lfs
# brew install imagemagick --with-webp
# brew install rename
# brew install ssh-copy-id
# brew install tree
# Remove outdated versions from the cellar.
brew cleanup