forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew.sh
executable file
·107 lines (91 loc) · 1.83 KB
/
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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Install command-line tools using Homebrew.
# Make sure we’re using the latest Homebrew.
brew update
# Upgrade any already-installed formulae.
brew upgrade
echo " 🍺 installing " $CASKS
CASKS=(
vscodium # visual-studio-code built from source
sublime-text
kitty # gpu accelerated terminal
brave-browser
google-chrome
firefox
zoomus
telegram
slack
alfred
transmission
vlc
)
brew cask install $CASKS
echo " 🍺 installing " $BREWS
BREWS=(
git
git-lfs
gnupg
grep
wget
openssh
screen
vim --with-override-system-vi
p7zip
zopfli
htop-osx
unrar
node
sshfs
pyenv
pyenv-virtualenv
coreutils
moreutils
findutils
docker
ffmpeg
tree
youtube-dl
koekeishiya/formulae/skhd
crisidev/homebrew-chunkwm/chunkwm
)
brew install $BREWS
echo " 🍺 installing fonts"
FONTS=(
font-anonymous-pro
font-dejavu-sans-mono-for-powerline
font-droid-sans-mono-for-powerline
font-meslo-lg font-input
font-inconsolata font-inconsolata-for-powerline
font-liberation-mono-for-powerline
font-liberation-sans
font-meslo-lg
font-nixie-one
font-office-code-pro
font-raleway font-roboto
font-source-code-pro font-source-code-pro-for-powerline
font-source-sans-pro
)
# Install font tools.
brew tap bramstein/webfonttools
brew install sfnt2woff
brew install sfnt2woff-zopfli
brew install woff2
# Instal some more fonts:
brew tap homebrew/cask-fonts
brew cask install $FONTS
# github.com/sindresorhus/quick-look-plugins
QUICKLOOKS=(
# quicklookase
qlcolorcode
qlimagesize
qlmarkdown
qlstephen
qlvideo
quicklook-csv
quicklook-json
webpquicklook
)
brew cask install $QUICKLOOKS
# restart quicklook manager
qlmanage -r
# Remove outdated versions from the cellar.
brew cleanup