Created
March 6, 2015 16:16
-
-
Save kiichi/a111649c6677a2bc2d1b to your computer and use it in GitHub Desktop.
.bash_profile
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 SVN_EDITOR=vim | |
| export PATH=$PATHexport PATH=$PATH::/Applications/MAMP/Library/bin/ | |
| # Setting PATH for Python 2.7 | |
| # The orginal version is saved in .bash_profile.pysave | |
| PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}" | |
| export PATH | |
| alias less='less -r' | |
| alias rm='rm -i' | |
| alias ls='ls -laG' | |
| alias svndiff='svn diff | colordiff' | |
| alias webserver='python -m SimpleHTTPServer 8000' | |
| export PS1="[\u@\h:\w] " | |
| export PS1="\[\e[30;44m\]\u\[\e[30;44m\]@\[\e[30;44m\]\h\[\e[37;44m\]:\w\[\e[0m\]>" | |
| #export PS1="\[\e[30;44m\]\u\[\e[30;44m\]\e[37;44m\]:\w\[\e[0m\]>" | |
| #http://www.ibm.com/developerworks/linux/library/l-tip-prompt/ | |
| export LSCOLORS=xefxcxdxbxegedabagacad | |
| #export LSCOLORS=exfxcxdxbxegedabagacad | |
| # 1. directory | |
| # 2. symbolic link | |
| # 3. socket | |
| # 4. pipe | |
| # 5. executable | |
| # 6. block special | |
| # 7. character special | |
| # 8. executable with setuid bit set | |
| # 9. executable with setgid bit set | |
| # 10. directory writable to others, with sticky bit | |
| # 11. directory writable to others, without sticky bit | |
| # | |
| # added by Anaconda 1.9.1 installer | |
| export PATH="/Users/kiichi/anaconda/bin:$PATH" | |
| # added by Algorete Loopy installer | |
| export PATH="/Users/kiichi/loopy/bin:$PATH" | |
| #other | |
| export PATH="/Users/kiichi/bin:$PATH" | |
| #go | |
| export GOPATH=$HOME/work/go | |
| export PATH=$PATH:$GOPATH/bin | |
| #Node.js - module loading | |
| export NODE_PATH="/usr/local/lib/node_modules:$PATH" | |
| alias ss='open -a /System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app' | |
| # {{{ | |
| # Node Completion - Auto-generated, do not touch. | |
| shopt -s progcomp | |
| for f in $(command ls ~/.node-completion); do | |
| f="$HOME/.node-completion/$f" | |
| test -f "$f" && . "$f" | |
| done | |
| # }}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment