dotfiles/brew.sh

67 lines
1.4 KiB
Bash
Raw Normal View History

2016-04-08 02:13:17 +01:00
#!/usr/bin/env zsh
# Install Homebrew stuff
2016-05-29 22:48:48 +01:00
brew tap homebrew/services
brew tap tldr-pages/tldr
2016-04-08 02:13:17 +01:00
# update brew, and upgrade already installed formulae
brew update
brew upgrade
# Install GNU coreutils, (OS X ships with outdated versions)
brew install coreutils
ln -s /usr/local/bin/gsha256sum /usr/local/bin/sha256sum
# Install more system utilities
brew install moreutils findutils
# Install GNU `sed`
brew install gnu-sed --with-default-names
# Install wget with IRI support
brew install wget --with-iri
# Install more recent versions of some OS X tools.
2018-06-16 21:19:27 +01:00
brew install vim --with-override-system-vi
brew install grep
brew install openssh
2016-04-08 02:13:17 +01:00
2016-05-21 17:12:33 +01:00
# Install zsh and addons
brew install zsh
brew install zsh-completions
brew install zsh-syntax-highlighting
2016-04-08 02:13:17 +01:00
# Install other useful utilities
brew install ack
brew install git
brew install git-lfs
2016-05-12 17:59:10 +01:00
brew install diff-so-fancy
brew install gnupg
2018-06-16 21:19:27 +01:00
brew install hub
brew install imagemagick --with-webp --with-libheif
2016-04-08 02:13:17 +01:00
brew install lua
brew install lynx
brew install openssl@1.1
2016-04-08 02:13:17 +01:00
brew install p7zip
brew install pcre
brew install python
brew install sqlite
2016-04-08 02:13:17 +01:00
brew install xz
brew install zopfli
# Install WebDev packages
brew install nginx
brew install mariadb
brew install postgresql
brew install postgis
brew install php
brew install node
# Radnom packages
brew install ffmpeg
brew install go
brew install ruby
brew install youtube-dl
2016-04-08 02:13:17 +01:00
# Remove outdated versions from the Cellar
brew cleanup