-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_programs.sh
executable file
·68 lines (51 loc) · 1.31 KB
/
install_programs.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
#!/bin/bash
# install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# zsh
brew install zsh
# oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# syntax highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# Install command-line tools
xcode-select --install
# Save Homebrew’s installed location.
BREW_PREFIX=$(brew --prefix)
# Install `wget` with IRI support.
brew install wget --with-iri
# install language version managers
brew install rbenv
brew install pyenv
brew install nvm
# Install font tools.
brew tap bramstein/webfonttools
brew install sfnt2woff
brew install sfnt2woff-zopfli
brew install woff2
# Install other useful binaries.
brew install ripgrep
brew install ack
brew install git
brew install git-lfs
brew install vim
brew install yarn
brew install fzf
brew tap heroku/brew && brew install heroku
# install casks
brew tap caskroom/cask
brew cask install spectacle \
1password \
alfred \
docker \
flux \
iterm2 \
istat-menus \
java \
jetbrains-toolbox \
postman \
spotify \
syntax-highlight \
google-chrome \
vlc
# Remove outdated versions from the cellar.
brew cleanup