forked from hkdobrev/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Brewfile
118 lines (110 loc) · 2.69 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
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
108
109
110
111
112
113
114
115
116
117
118
# 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: ['default-names']
# Install Bash 4
# Note: don’t forget to add `/usr/local/bin/bash` to `/etc/shells` before running `chsh`.
brew 'bash'
# Install Bash completion
brew 'bash-completion'
# Install useful completions
brew 'homebrew/completions/apm-bash-completion'
brew 'homebrew/completions/brew-cask-completion'
brew 'homebrew/completions/bundler-completion'
brew 'homebrew/completions/gem-completion'
brew 'homebrew/completions/grunt-completion'
brew 'homebrew/completions/open-completion'
brew 'homebrew/completions/vagrant-completion'
# 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']
tap 'homebrew/dupes'
brew 'homebrew/dupes/grep'
brew 'homebrew/dupes/screen'
brew 'homebrew/dupes/zlib'
# Install PHP and tools
brew 'homebrew/php/php70', args: ['with-gmp']
brew 'homebrew/php/php70-xdebug'
# Install other useful binaries
brew 'ack'
brew 'aria2'
brew 'bfg'
brew 'cloc'
brew 'cmake'
brew 'ctags'
brew 'diff-so-fancy'
brew 'ghex'
brew 'git'
brew 'git-standup'
brew 'git-utils'
brew 'imagemagick', args: ['with-webp']
brew 'hub', args: ['devel']
brew 'htop-osx'
brew 'jump'
brew 'jp2a'
brew 'jpegoptim'
brew 'node' # This installs `npm` too using the recommended installation method
brew 'openssl@1.1'
brew 'optipng'
brew 'p7zip'
brew 'pigz'
brew 'pv'
brew 'python3'
brew 'rbenv'
brew 'rbenv-binstubs'
brew 'rename'
brew 'ssh-copy-id'
brew 'subliminal'
brew 'tldr'
brew 'tree'
brew 'unar'
brew 'webkit2png'
brew 'yarn'
brew 'youtube-dl'
brew 'zopfli'
# Install Brew Cask along with Desktop apps
tap 'caskroom/cask'
tap 'caskroom/fonts'
tap 'caskroom/versions'
cask '1password'
cask 'atom'
cask 'caret'
cask 'firefox'
cask 'font-source-code-pro'
cask 'google-chrome'
cask 'google-drive'
cask 'google-photos-backup'
cask 'iterm2'
cask 'java'
cask 'kindle'
cask 'licecap'
cask 'monodraw'
cask 'rescuetime'
cask 'sequel-pro'
cask 'sketch'
cask 'slack'
cask 'sublime-text'
cask 'the-unarchiver'
cask 'vagrant'
cask 'virtualbox'
cask 'vlc'
# Quick Look plugins
# See https://github.com/sindresorhus/quick-look-plugins
cask 'betterzipql'
cask 'qlcolorcode'
cask 'qlimagesize'
cask 'qlmarkdown'
cask 'qlprettypatch'
cask 'qlstephen'
cask 'qlrest'
cask 'qlvideo'
cask 'quicklook-csv'
cask 'quicklook-json'
cask 'suspicious-package'
cask 'webpquicklook'