Created
July 14, 2020 20:45
-
-
Save iddan/99a75f079e0452597e003364ef4788cc to your computer and use it in GitHub Desktop.
My Bash Profile
This file contains 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
#! /bin/bash | |
# Load all SSH keys | |
ssh-add -A 2>/dev/null; | |
# Enable colours | |
### Terminal | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
### grep | |
alias grep="`which grep` --color=auto"; | |
alias egrep="`which egrep` --color"; | |
# Make binaries work | |
### Go | |
export PATH="$HOME/go/bin:$PATH"; | |
### Node.js | |
export PATH="/usr/bin:$PATH"; | |
### Rust | |
export PATH="$HOME/.cargo/bin:$PATH"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment