dotfiles/resources/brew.sh

51 lines
1.1 KiB
Bash
Raw Normal View History

2011-09-05 12:19:31 -06:00
# Make sure were using the latest Homebrew
brew update
# Upgrade any already-installed formulae
brew upgrade
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
2011-09-05 12:19:31 -06:00
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils
2011-09-05 12:19:31 -06:00
# Install Bash 4
brew install bash
2013-09-30 23:21:02 -06:00
2011-09-05 12:19:31 -06:00
# Install wget with IRI support
brew install wget --enable-iri
# Install more recent versions of some OS X tools
brew tap homebrew/dupes
brew install homebrew/dupes/grep
# Important tools
2013-03-17 03:33:15 -06:00
brew install emacs
brew install git
2013-03-17 02:22:39 -06:00
brew install tmux
brew install python
brew install htop
brew link python
brew install scala
brew install sbt
brew install node
brew install npm
# Install everything else
brew install watch
brew install greadlink
2013-03-17 02:22:39 -06:00
brew install nmap
brew install readline
brew install netcat
brew install reattach-to-user-namespace
2014-04-14 00:51:26 -06:00
brew install daemonize
brew link daemonize
brew install ngrep
brew install gist
2011-09-05 12:19:31 -06:00
# Remove outdated versions from the cellar
2013-03-17 02:22:39 -06:00
brew cleanup
# htop wont display all process information if the owner is not root
fix_brew_htop