Created
June 13, 2014 16:08
-
-
Save chyld/e6ef414e3a237cbd51df to your computer and use it in GitHub Desktop.
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
txtblk='\[\e[0;30m\]' # Black | |
txtred='\[\e[0;31m\]' # Red | |
txtgrn='\[\e[0;32m\]' # Green | |
txtylw='\[\e[0;33m\]' # Yellow | |
txtblu='\[\e[0;34m\]' # Blue | |
txtpur='\[\e[0;35m\]' # Purple | |
txtcyn='\[\e[0;36m\]' # Cyan | |
txtwht='\[\e[0;37m\]' # White | |
txtrst='\[\e[0m\]' # Text Reset | |
GIT_PATH=/usr/local/git/bin | |
NODE_PATH=/usr/local/node/bin | |
MONGO_PATH=/Users/chyld/Documents/Data/MongoDB/mongodb/bin | |
export PATH=$GIT_PATH:$NODE_PATH:$MONGO_PATH:$PATH | |
export EDITOR=vim | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
export PS1="$txtcyn\u$txtred@$txtgrn\h $txtred\w$txtblk >$txtrst " | |
alias l='ls -a' | |
alias ll='ls -alh' | |
alias b='cd ..' | |
alias c='clear' | |
alias code='cd ~/Documents/Code' | |
alias data='cd ~/Documents/Data' | |
alias dsstore='find . -name ".DS_Store" -delete' | |
alias m='mongo' | |
alias sm='mongod -f ~/.mongodb.conf' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment