Skip to content
Adam Conkey edited this page Dec 26, 2022 · 5 revisions

MacOS Setup

These are some steps I have needed to take to get my system setup the way I like.

Bash

Tab Completion

Need to install bash-completion to get tab completes:

  1. brew install bash-completion
  2. Add to .bash_profile: [[ -r "$(brew --prefix)/etc/profile.d/bash_completion.sh" ]] && . "$(brew --prefix)/etc/profile.d/bash_completion.sh"

SSH

Copy SSH Keys to Remote

Can enable password-less logins to a remote server by copying ssh key to the remote:

ssh-copy-id -i ~/.ssh/id_rsa.pub adam@REMOTE_IP

tmux

brew install tmux
Clone this wiki locally