mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
30 lines
485 B
Bash
30 lines
485 B
Bash
#
|
|
# Homebrew related stuff.
|
|
#
|
|
|
|
install_brew_global_packages () {
|
|
# Basic packages.
|
|
brew install \
|
|
ack \
|
|
android-sdk \
|
|
bash \
|
|
bazaar \
|
|
git \
|
|
heroku \
|
|
htop \
|
|
kubernetes-cli \
|
|
peco \
|
|
readline \
|
|
reattach-to-user-namespace \
|
|
the_silver_searcher \
|
|
tmux \
|
|
zsh
|
|
|
|
brew install aspell --with-lang-en --with-lang-el --with-lang-sv
|
|
|
|
# Services.
|
|
brew install \
|
|
mysql \
|
|
redis
|
|
}
|