Skip to content

Instantly share code, notes, and snippets.

@kirarpit
Created April 26, 2023 11:57
Show Gist options
  • Save kirarpit/58651ee55468ccf83b0f1f7878f9989f to your computer and use it in GitHub Desktop.
Save kirarpit/58651ee55468ccf83b0f1f7878f9989f to your computer and use it in GitHub Desktop.
source ~/.git-prompt.sh
# bash prompt
export THIN_WHITE="\033[0;00m"
export BLACK="\033[0;30m"
export RED="\033[0;31m"
export GREEN="\033[0;32m"
export YELLOW="\033[0;33m"
export BLUE="\033[0;34m"
export GREY="\033[1;34m"
export MAGENTA="\033[0;35m"
export PURPLE="\033[1;35m"
export CYAN="\033[0;36m"
export BRIGHT_GREY="\033[1;36m"
export WHITE="\033[1;37m"
PS1="\[$YELLOW\]\u@\[$PURPLE\]\h\[$MAGENTA\]:\[$CYAN\]\w\[$BRIGHT_GREY\]\$(__git_ps1) \$ \[$THIN_WHITE\]"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/iarpitgarg/google-cloud-sdk/path.bash.inc' ]; then . '/Users/iarpitgarg/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/iarpitgarg/google-cloud-sdk/completion.bash.inc' ]; then . '/Users/iarpitgarg/google-cloud-sdk/completion.bash.inc'; fi
[[ -z "${ZSH_VERSION}" && -e "/Users/iarpitgarg/mdproxy/data/mdproxy_bash_profile" ]] && source "/Users/iarpitgarg/mdproxy/data/mdproxy_bash_profile" # MDPROXY-BASH-PROFILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment