Files
dotfiles/install/brew.sh
Nick Nisi 9e841588b6 install script updates
* fix logging and spacing issues
* update to use bash instead of zsh
2016-03-29 14:58:46 -07:00

36 lines
697 B
Bash
Executable File

#!/bin/sh
if test ! $(which brew); then
echo "Installing homebrew"
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
echo -e "\n\nInstalling homebrew packages..."
echo "=============================="
# cli tools
brew install ack
brew install tree
brew install wget
# development server setup
brew install nginx
brew install dnsmasq
# development tools
brew install git
brew install hub
brew install macvim --override-system-vim
brew install reattach-to-user-namespace
brew install tmux
brew install zsh
brew install highlight
brew install nvm
brew install z
brew install markdown
# install neovim
brew install neovim/neovim/neovim
exit 0