Note: This is just my evn, for your your reference
SSH Agent
Auto load password protected private key
Step 1: Add the private key
ssh-add -K ~/.ssh/id_ed25519
Step 2: add/update ~/.ssh/config
file
Host *
UseKeychain yes
AddKeysToAgent yes
IdentityFile ~/.ssh/id_ed25519
Step 3: add/update ~/Library/LaunchAgents/ssh.add.a.plist
with
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>ssh.add.a</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/ssh-add</string>
<string>-A</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
VSCode configurattion
- GraphQL by GraphQL Foundation
- Prettier - Code formatter by Prettier
- ESLint by Dirk Baeumer
- Live Server by Ritwick Dey
- Material Icon Theme by Philipp Kief
- Color Highlight by Sergii Naumov
- Vetur by Pine Wu