- Hookshot
- Adblock
- Screen Zoom
- System Preferences -> Accessibility -> Zoom -> ☑️ Use scroll gesture with modifier key to zoom
- Remote Login | Screen Sharing
- System Preferences -> Sharing -> ☑️ Remote Login
- System Preferences -> Sharing -> ☑️ Screen Sharing
- while you're here go ahead and change your computer's public name to something AWESOME
$ defaults write NSGlobalDomain KeyRepeat -int 0
defaults -currentHost write -g AppleFontSmoothing -int 0
and reboot
$ xcode-select --install
or download directly from the developer center [see: https://developer.apple.com/downloads/index.action]
$ mkdir ~/.ssh
$ cd ~/.ssh
$ ssh-keygen -t rsa -C "<your email>"
$ ssh-add ~/.ssh/id_rsa
$ pbcopy < ~/.ssh/id_rsa.pub
visit https://github.com/settings/ssh and add your new ssh key [see https://help.github.com/articles/generating-ssh-keys]
$ ssh -T [email protected]
$ git clone [email protected]:GITHUB_USERNAME/config.git ~/.config
$ git config --global core.excludesfile '~/.gitignore'
$ git config --global core.editor `which vim`
$ git config --global user.name "[name]"
$ git config --global user.email "[email]"
$ cat >> ~/.gitignore <<DELIM
*.swp
*.swo
.DS_*
.env
.tmux
node_modules
DELIM
Or whatever you need to ignore
Typo