Just a README with random env setup stuff
setting up your email on github
git config --global --edit
git commit --amend --reset-author # if already committed something with the wrong email
options
# swap out your preferred email
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
If you generated a github specific path for the keypair, add the following to .ssh/config
:
Host github.com
IdentityFile ~/.ssh/id_ed25519_github # or whatever you called it
IdentitiesOnly yes
AddKeysToAgent yes
Useful shortcuts
TODO
git clone git@github.com:rusty-objects/XXX.git
- Rust
- Hold down key repeats input ([StackOverflow][https://stackoverflow.com/questions/39972335/how-do-i-press-and-hold-a-key-and-have-it-repeat-in-vscode])
# holding down repeats
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false
# holding down does NOT repeat
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool true