Last active
August 10, 2017 22:43
-
-
Save camsaul/afadfc0238bccaeeb366f82ca5eb4388 to your computer and use it in GitHub Desktop.
Mac Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Reminder of the various things to do when setting up a Mac | |
# Things to install via App Store: | |
# Patterns | |
# xCode | |
# Slack | |
# System Monitor | |
# Things to install from web: | |
# | |
# Chrome | |
# JRE | |
# pgAdmin III | |
# Postgres.app | |
# SourceTree | |
# SizeUp | |
# BitDefender | |
# VyperVPN | |
# Emacs for OS X | |
# Install Homebrew. | |
# Things to install via Homebrew: | |
# leiningen | |
# node | |
# yarn | |
# ispell | |
# mysql | |
# mongo | |
# gpg2 | |
# Alias for Emacs (put in .bash_profile) | |
alias emacs=/Applications/Emacs.app/Contents/MacOS/Emacs | |
# Show hidden files in Finder | |
defaults write com.apple.Finder AppleShowAllFiles YES | |
# install Homebrew | |
# Configure Git | |
# Follow steps here to set up SSH: https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/ | |
git config --global user.name "Cam Saul" | |
git config --global user.email <redacted> | |
git config --global core.editor "emacs -nw" | |
git config --global commit.gpgsign true | |
git config --global user.signingkey <long-fingerprint> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment