Created
July 10, 2012 09:50
-
-
Save dan-palmer/3082384 to your computer and use it in GitHub Desktop.
bash profile stuff
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
export CLICOLOR=1 # colour stuff | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
alias ls='ls -GFahlrt' | |
alias updatelocate='sudo /usr/libexec/locate.updatedb' | |
export PATH="/usr/local/mysql/bin:$PATH" | |
export HISTCONTROL=ignoreboth:erasedups # no duplicate entries | |
shopt -s histappend # append history file | |
export PROMPT_COMMAND="history -a" # update histfile after every command |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment