Skip to content

Instantly share code, notes, and snippets.

@juliandm
Last active July 1, 2022 12:37
Show Gist options
  • Save juliandm/a842506ee6de16162670c83a21c4b726 to your computer and use it in GitHub Desktop.
Save juliandm/a842506ee6de16162670c83a21c4b726 to your computer and use it in GitHub Desktop.
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
eval `ssh-agent`
for possiblekey in ${HOME}/.ssh/id_*; do
if grep -q PRIVATE "$possiblekey"; then
ssh-add "$possiblekey"
fi
done
# PIP
export PATH="$HOME/.local/bin:$PATH"
# TFENV
export PATH="$HOME/.tfenv/bin:$PATH"
# POETRY
export PATH="$HOME/.poetry/bin:$PATH"
# Needed for wsl1 docker on windows
export DOCKER_HOST=tcp://localhost:2375
@juliandm
Copy link
Author

put in ~/.bashrc

gen ssh key with:

ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_foo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment