-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
53 lines (36 loc) · 989 Bytes
/
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
cask_args appdir: '/Applications'
# vim: syntax=ruby filetype=ruby
# Lets us do `brew services restart postgres`, etc
tap 'homebrew/services'
tap 'homebrew/bundle'
brew 'coreutils'
# The recommended way to use Heroku
tap 'heroku/brew'
brew 'heroku'
# Use version 3.4+ for colorful diffs with --color
brew 'diffutils'
# so :Rtags works
brew 'ctags'
# My favorite editor
brew 'vim'
# Fast GitHub client, used in git-create-pull-request
brew 'hub'
# Don't install completions, in favor of using Zsh's (better) git completions
brew 'git', args: ['--without-completions']
# Fuzzy finder
brew 'fzf'
# thoughtbot stuff like rcm
tap 'thoughtbot/formulae'
brew 'rcm'
brew 'parity'
# Fast, hip replacement for grep
brew 'ripgrep'
# https://tldr.sh/
# Man pages, but with practical examples.
brew 'tldr'
# asdf version manager: https://github.com/asdf-vm/asdf
brew 'asdf'
# cat, but smarter
brew 'bat'
# Mac App Store command line interface https://github.com/mas-cli/mas
brew 'mas'