-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
72 lines (54 loc) · 1.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Install GNU core utilities (those that come with OS X are outdated).
# Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`.
brew 'coreutils'
# Install some other useful utilities like `sponge`.
brew 'moreutils'
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed.
brew 'findutils'
# Install GNU `sed`, overwriting the built-in `sed`.
brew 'gnu-sed', args: ['with-default-names']
# Install Bash 4.
# Note: don’t forget to add `/usr/local/bin/bash` to `/etc/shells` before
# running `chsh`.
brew 'bash'
tap 'homebrew/versions'
brew 'bash-completion2'
# Install `wget` with IRI support.
brew 'wget', args: ['with-iri']
# Install more recent versions of some OS X tools.
brew 'vim', args: ['override-system-vi']
brew 'grep'
brew 'openssh'
brew 'screen'
brew 'php55', args: ['with-gmp']
# Install font tools.
tap 'bramstein/webfonttools'
brew 'sfnt2woff'
brew 'sfnt2woff-zopfli'
brew 'woff2'
# Install other useful binaries.
brew 'git'
brew 'node'
brew 'tree'
# Install native apps
brew 'caskroom/cask/brew-cask'
tap 'caskroom/versions'
cask 'iterm2'
cask 'google-chrome-canary'
cask 'firefoxdeveloperedition'
cask 'imagealpha'
cask 'imageoptim'
cask 'sublime-text3'
cask 'atom'
cask 'the-unarchiver'
cask 'unrarx'
cask 'virtualbox'
cask 'sequel-pro'
cask 'spectacle'
cask 'cloud'
cask 'xscope'
cask 'flux'
cask 'bleep'
cask 'sketch'
cask 'sketch-tool'
cask 'xquartz'