Files
dotfiles/ssh/config
Lee Tang a6d7c0ddc5 add tsserver
Signed-off-by: Lee Tang <i@d0zingcat.dev>
2023-01-15 17:44:23 +08:00

26 lines
466 B
Plaintext

Host *
IdentityAgent "~/.1password/agent.sock"
ServerAliveInterval 60
TCPKeepAlive yes
Host github.com
Hostname ssh.github.com
Port 443
User git
# Personal GitHub
Host personalgit
Hostname ssh.github.com
Port 443
User git
IdentityFile ~/.ssh/personal_git.pub
IdentitiesOnly yes
# Work GitHub
Host workgit
Hostname ssh.github.com
Port 443
User git
IdentityFile ~/.ssh/work_git.pub
IdentitiesOnly yes