Created
December 27, 2011 14:06
-
-
Save codeb2cc/1523757 to your computer and use it in GitHub Desktop.
Bash Prompt
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
# User specific aliases and functions | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias rm='rm -i' | |
alias mv='mv -i' | |
alias du='du -h --max-depth=1' | |
alias df='df -h' | |
alias grep='grep --color' | |
#alias sudo='sudo -E' | |
# vim-X11 command with clipboard support("*) | |
alias vi='vimx' | |
PATH=$PATH:$HOME/.local/bin:$HOME/bin:$HOME/Local/bin | |
export PATH | |
#PS1="\[\e[1;32m\][\t #\#]\[\e[0m\][\u@\h \W]> " | |
PS1="\[\e[1;32m\][\u@\h \W]\[\e[1;33m\] #\#> \[\e[0m\]" | |
export PS1 | |
# virtualenvwrapper setting | |
export WORKON_HOME=~/Workspace/VirtualEnv | |
source /usr/bin/virtualenvwrapper.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment