Skip to content

Instantly share code, notes, and snippets.

@ferrants
Last active October 7, 2015 13:08
Show Gist options
  • Save ferrants/3170044 to your computer and use it in GitHub Desktop.
Save ferrants/3170044 to your computer and use it in GitHub Desktop.
bash profile
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
alias l="ls -l"
alias ll="ls -l"
alias la="ls -la"
alias lah="ls -lah"
alias u="cd .."
alias uu="cd ../.."
alias uuu="cd ../../.."
alias uuuu="cd ../../../.."
source ~/.git-completion.bash
export GIT_PS1_SHOWDIRTYSTATE=true
export GIT_PS1_SHOWUNTRACKEDFILES=true
export PS1='\[\033[36;40m\]\w\[\033[0;33m\]$(__git_ps1 " [%s]")\[\e[0m\] $ '
export PROMPT_COMMAND='echo -ne "\033]0; ${PWD##*/}\007"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment