Last active
July 1, 2022 12:37
-
-
Save juliandm/a842506ee6de16162670c83a21c4b726 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
Author
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
put in
~/.bashrcgen ssh key with:
ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_foo