mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-14 07:26:44 +00:00
- Add 1Password SSH agent socket symlink creation in setup.sh - Copy ssh/example template to ~/.ssh/config on fresh install - Update Brewfile with additional packages (bun, pnpm, qq, teamviewer, etc.) - Update documentation (CHECKLIST, MIGRATION_GUIDE, README)
28 lines
518 B
Plaintext
28 lines
518 B
Plaintext
Include ~/.orbstack/ssh/config
|
|
|
|
Host *
|
|
IdentityAgent "~/.1password/agent.sock"
|
|
ServerAliveInterval 60
|
|
TCPKeepAlive yes
|
|
|
|
Host github.com
|
|
Hostname ssh.github.com
|
|
Port 443
|
|
User git
|
|
IdentityFile ~/.ssh/Personal.pub
|
|
IdentitiesOnly yes
|
|
|
|
Host personalgit
|
|
Hostname ssh.github.com
|
|
Port 443
|
|
User git
|
|
IdentityFile ~/.ssh/Personal.pub
|
|
IdentitiesOnly yes
|
|
|
|
Host workgit
|
|
Hostname ssh.github.com
|
|
Port 443
|
|
User git
|
|
IdentityFile ~/.ssh/Work.pub
|
|
IdentitiesOnly yes
|