-
Notifications
You must be signed in to change notification settings - Fork 4
/
Brewfile
47 lines (34 loc) · 821 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
# Qt5 for capybara-webkit
brew 'qt5'
# Gives us gsort and other GNU tools
brew 'coreutils'
# The recommended way to use Heroku
brew 'heroku-toolbelt'
# Colorful tailing of logs
brew 'multitail'
# Colorful diffs (alias diff='colordiff -u')
brew 'colordiff'
# Fancier git diffs
brew 'diff-so-fancy'
# a better ack/grep
brew 'the_silver_searcher'
# a better ag
brew 'rg'
# Fuzzy finding
brew 'fzf'
# It's Vim
brew 'mercurial'
brew 'vim'
# Syntax highlighting...for ZSH!
brew 'zsh-syntax-highlighting'
# rcm for managing dotfiles
tap 'thoughtbot/formulae'
brew 'rcm'
# Workarounds for accessing the Mac OS X pasteboard in tmux sessions
brew 'install reattach-to-user-namespace'
# Use homebrew to install OS X things
# Disable for now
# tap 'caskroom/cask'
# cask 'alfred'
# cask 'dropbox'
# cask 'google-chrome'