Created
May 24, 2013 03:57
-
-
Save greneholt/5641206 to your computer and use it in GitHub Desktop.
Useful bash configuration
This file contains 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
#if [ -f ~/.bash_common ]; then | |
# . ~/.bash_common | |
#fi | |
export CLICOLOR=1 | |
export PS1="\[\e[7;32m\]\u\[\e[0m\] \[\e[7;36m\]\w\[\e[27;32m\]\$ \[\e[0m\]" | |
export EDITOR=vim | |
alias ll="ls -lh" | |
alias la="ls -a" | |
alias lla="ls -lha" | |
alias c="cd ~/Code" | |
alias d="cd ~/Desktop" | |
alias o="cd ~/Downloads" | |
alias u="cd ../" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment