Skip to content

Instantly share code, notes, and snippets.

@kiichi
Created March 6, 2015 16:16
Show Gist options
  • Select an option

  • Save kiichi/a111649c6677a2bc2d1b to your computer and use it in GitHub Desktop.

Select an option

Save kiichi/a111649c6677a2bc2d1b to your computer and use it in GitHub Desktop.
.bash_profile
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