forked from jmcglone/laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages
29 lines (20 loc) · 1.11 KB
/
packages
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
fancy_echo "Installing Postgres, a good open source relational database ..."
brew install postgres --no-python
fancy_echo "Installing Redis, a good key-value database ..."
brew install redis
fancy_echo "Installing The Silver Searcher (better than ack or grep) to search the contents of files ..."
brew install the_silver_searcher
fancy_echo "Installing vim from Homebrew to get the latest version ..."
brew install vim
fancy_echo "Installing ctags, to index files for vim tab completion of methods, classes, variables ..."
brew install ctags
fancy_echo "Installing tmux, to save project state and switch between projects ..."
brew install tmux
fancy_echo "Installing reattach-to-user-namespace, for copy-paste and RubyMotion compatibility with tmux ..."
brew install reattach-to-user-namespace
fancy_echo "Installing ImageMagick, to crop and resize images ..."
brew install imagemagick
fancy_echo "Installing QT, used by Capybara Webkit for headless Javascript integration testing ..."
brew install qt
fancy_echo "Installing watch, to execute a program periodically and show the output ..."
brew install watch