Skip to content

Instantly share code, notes, and snippets.

@drudge
Created December 18, 2019 17:44
Show Gist options
  • Save drudge/032c0c4cee1fac9bda55450bffded96d to your computer and use it in GitHub Desktop.
Save drudge/032c0c4cee1fac9bda55450bffded96d to your computer and use it in GitHub Desktop.
TWE Brewfile
#############################################
###
### $ brew tap homebrew/bundle
### $ brew bundle
###
#############################################
#############################################
### store apps in the Applications folder
#############################################
cask_args appdir: "/Applications"
#############################################
### use casks to install apps
#############################################
tap 'homebrew/cask'
#############################################
### install oracle java
#############################################
cask 'oracle-jdk' unless system '/usr/libexec/java_home --failfast'
### or openjdk
# cask 'java' unless system '/usr/libexec/java_home --failfast'
#############################################
### install essential apps
#############################################
cask 'tunnelblick'
cask 'slack'
cask 'google-chrome'
cask 'chromedriver'
cask 'docker'
cask '1password'
# cask '1password-cli'
#############################################
### and editors
#############################################
cask 'visual-studio-code'
cask 'intellij-idea-ce'
#############################################
### utilities
#############################################
cask 'the-unarchiver'
cask 'tableplus'
cask 'squirrelsql'
cask 'fork'
cask 'cyberduck'
cask 'mongodb-compass'
# cask 'paw'
# cask 'transmit'
# cask 'mailplane'
# cask 'sketch'
#############################################
### cli essentials
#############################################
brew 'nvm'
brew 'gauge'
brew 'git'
brew 'git-extras'
brew 'rsync'
brew 'libxml2'
brew 'openssl'
brew 'python3'
brew 'nmap'
brew 'curl'
brew 'jq'
brew 'awscli'
brew 's3cmd'
brew 'maven'
#############################################
### configure services
#############################################
# brew 'postgresql'
# brew 'mysql'
# brew 'redis'
# brew 'mongodb'
#############################################
### from the mac app store
#############################################
# mas 'XCode', id: 497799835
# mas 'Microsoft Remote Desktop 10', id: 1295203466
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment