-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrewfile
58 lines (50 loc) · 1.1 KB
/
Brewfile
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
# Make sure we’re using the latest Homebrew
update
# Upgrade any already-installed formulae
upgrade
install pcre
install zsh
install openssl
install curl
install git --with-brewed-curl --with-brewed-openssl --with-pcre
install wget
install gnu-tar
install vim --disable-nls --override-system-vi
install ctags
install rbenv
# libyaml, readline, and libffi needed for Ruby
install libyaml
install readline
install libffi
install ruby-build
install the_silver_searcher
install tmux
install reattach-to-user-namespace
install weechat
# commandline json query tool
install jq
# python for awscli tools
install python
install awscli
# manage dotfiles
tap thoughtbot/formulae
install rcm
# homebrew cask
tap caskroom/cask
install brew-cask
cask install google-chrome
cask install evernote
cask install virtualbox
cask install vagrant --appdir=/Applications
cask install vmware-fusion --appdir=/Applications
cask install airparrot
cask install dropbox
cask install rdio
cask install flux
cask install kindle
cask install silverlight
# packer
tap homebrew/binary
install packer
# Remove outdated versions from the cellar
cleanup