Skip to content

Instantly share code, notes, and snippets.

@nathancrank
Last active January 10, 2025 23:20
Show Gist options
  • Save nathancrank/3fcf166e2192e5aabec4442a68f47888 to your computer and use it in GitHub Desktop.
Save nathancrank/3fcf166e2192e5aabec4442a68f47888 to your computer and use it in GitHub Desktop.
New Mac

Brew - brew.sh

Sublime Text - https://www.sublimetext.com

iTerm 2 - http://iterm2.com

iTerm 2 Color Schemes - http://iterm2colorschemes.com

Xcode - App Store

Android Studio - https://developer.android.com/studio/

Android File Transfer - https://www.android.com/filetransfer/

Little Snitch - https://www.obdev.at/products/littlesnitch/index.html

MicroSnitch - https://www.obdev.at/products/microsnitch/index.html

Amphetamine - App Store

App Trap http://onnati.net/apptrap/

Magnet - App Store

Reeder - App Store

Carbon Copy Cloner - https://bombich.com/

Transmit - https://panic.com/transmit/

OmniGraffle - App Store

Sketch - https://www.sketchapp.com/

Creative Cloud - http://adobe.com

Authy - https://authy.com

PCalc - App Store

BarTender - https://www.macbartender.com

The Unarchiver - App Store

Firefox - https://www.mozilla.org/

Firefox Dev - https://www.mozilla.org/en-US/firefox/developer/

Chrome - https://www.google.com/chrome/

Google Drive Backup and Sync - https://www.google.com/drive/download/

Google File Stream - https://www.google.com/drive/download/

Site Sucker - App Store

MacTracker - https://mactracker.ca

1Password - App Store

uBlock Origin Safari - https://github.com/el1t/uBlock-Safari

Ghostery Lite Safari - App Store

Aerial Screensaver - https://github.com/JohnCoates/Aerial

# Switch to zsh from that bash nonsense
chsh -s /bin/zsh
# install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# make a user bin folder
mkdir -p ~/bin
# link subl command
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl
# install xcode cli tools
xcode-select --install
# brew things
brew install diff-so-fancy tldr vim htop glances bat fd ncdu wget curl
# install vim Pathogen
mkdir -p ~/.vim/autoload ~/.vim/bundle
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
# install vim-sensible
git clone https://github.com/tpope/vim-sensible.git ~/.vim/bundle/vim-sensible
# install vim-airline
git clone https://github.com/vim-airline/vim-airline ~/.vim/bundle/vim-airline
# install vim-multiple-cursors
git clone https://github.com/terryma/vim-multiple-cursors.git ~/.vim/bundle/vim-multiple-cursors
# Disable Crash Reporter
launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment