Last active
September 9, 2017 14:54
-
-
Save EddyBorja/be458f9cba1a821ef801 to your computer and use it in GitHub Desktop.
Eddy Borja's basic bash profile
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
#Do not use this profile without copying .git-prompt.sh to the local machine first | |
source ~/.git-prompt.sh | |
GIT_PS1_SHOWDIRTYSTATE=1 | |
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile | |
export PS1="\[\033[0;33m\]\u:\[\033[1;33m\]\W\$(__git_ps1)\[\033[0;33m\]\$ \[\033[0m\]" | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
alias ls='ls -Gh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment