Skip to content

Instantly share code, notes, and snippets.

@calimaborges
Created October 22, 2012 18:29
Show Gist options
  • Save calimaborges/3933228 to your computer and use it in GitHub Desktop.
Save calimaborges/3933228 to your computer and use it in GitHub Desktop.
Sugestions to environment variables

Proxy config

http_proxy="http://carlosb@senha:172.19.100.35:8080/"
https_proxy="https://carlosb@senha:172.19.100.35:8080/"
ftp_proxy="ftp://carlosb@senha:172.19.100.35:8080/"

PS1

RESET="\[\017\]"
NORMAL="\[\033[0m\]"
USER_COLOR="\[\033[1;32m\]"
DIR_COLOR="\[\033[1;35m\]"
GIT_COLOR="\[\033[1;33m\]"
PROMPT_COLOR="\[\033[1;31m\]"

PS1="${RESET}${USER_COLOR}\u ${DIR_COLOR}\W${GIT_COLOR}\$(__git_ps1) ${PROMPT_COLOR}\$${NORMAL} "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment