Skip to content

Instantly share code, notes, and snippets.

@jmetzz
Created March 6, 2020 16:59
Show Gist options
  • Save jmetzz/6c5e14a770815a80816ca42807e2493d to your computer and use it in GitHub Desktop.
Save jmetzz/6c5e14a770815a80816ca42807e2493d to your computer and use it in GitHub Desktop.
#! /usr/bin/env bash
brew install coreutils
# Upgrade git and install related apps
sudo mv /usr/bin/git /usr/bin/git-apple
brew install git
brew link --force git
brew install git-flow diff-so-fancy
git config --global core.pager "diff-so-fancy | less --tabs=4 -RFX"
# the command-line based apps
brew install vim wget tree jq httpie ag
# docker session
brew cask install docker
brew install ctop dive
brew install docker-machine
# the gui-based tools
brew cask install iterm2 spectacle atom slack pycharm
#brew cask install ngrok
# misc
brew install tldr
# upgrade bash
brew install bash
sudo sh -c "echo '/usr/local/bin/bash # Bash upgrade on macOS' >> /etc/shells"
# if you want to use bash as your default shell instead of zshell, run the following line
# chsh -s /usr/local/bin/bash $USER
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment