Skip to content

Instantly share code, notes, and snippets.

@sarmadsaleem
Created September 10, 2019 10:06
Show Gist options
  • Save sarmadsaleem/c018488e4d32db35d0344973ed4ecb21 to your computer and use it in GitHub Desktop.
Save sarmadsaleem/c018488e4d32db35d0344973ed4ecb21 to your computer and use it in GitHub Desktop.
tap "adoptopenjdk/openjdk"
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-versions"
tap "homebrew/core"
tap "homebrew/services"
brew "python"
brew "awscli"
brew "git"
brew "go"
brew "jenv"
brew "jq"
brew "jupyter"
brew "kubernetes-cli""
brew "mas"
brew "pipenv"
brew "pyenv", args: ["HEAD"]
brew "rbenv"
brew "speedtest-cli"
brew "terraform"
brew "tldr"
brew "tree"
brew "wget"
brew "yarn"
cask "adoptopenjdk8"
cask "android-platform-tools"
cask "chromedriver"
cask "docker"
cask "firefox"
cask "github"
cask "google-chrome-canary"
cask "intellij-idea"
cask "iterm2"
cask "mamp"
cask "postico"
cask "postman"
cask "sequel-pro"
cask "skype"
cask "spotify"
cask "telegram"
cask "transmission"
cask "virtualbox"
cask "visual-studio-code"
cask "vlc"
cask "whatsapp"
mas "com.readdle.smartemail-Mac", id: 1176895641
#!/bin/sh
set -e
set -o pipefail
# MacOS tweeks
chflags nohidden ~/Library
defaults write com.apple.finder AppleShowAllFiles YES
defaults write com.apple.finder ShowPathbar -bool true
defaults write com.apple.finder ShowStatusBar -bool true
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false
# xCode command line tools
xcode-select --install
# Homebrew (CLI Package Manager), Cask (GUI Package Manager) and MAS (CLI for App Store)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap caskroom/cask
echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bash_profile
brew doctor
brew bundle # Install all homebrew CLI, GUI and App Store packages specified in Brewfile
# Git setup
brew install git
git config --global user.name "Sarmad Saleem"
git config --global user.email "sarmad.saleem@live.com"
git config --global credential.helper osxkeychain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment