Skip to content

Instantly share code, notes, and snippets.

@iddan
Created July 14, 2020 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iddan/99a75f079e0452597e003364ef4788cc to your computer and use it in GitHub Desktop.
Save iddan/99a75f079e0452597e003364ef4788cc to your computer and use it in GitHub Desktop.
My Bash Profile
#! /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