Created
June 9, 2011 14:25
-
-
Save ytakano/1016828 to your computer and use it in GitHub Desktop.
zshenv
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
export TERM=xterm | |
export PROMPT="%n@%m %#> " | |
export RPROMPT='[%~]' | |
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin | |
export LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib:/usr/X11R6/lib | |
export LIBRARY_PATH=$LD_LIBRARY_PATH | |
export C_INCLUDE_PATH=/usr/include:/usr/local/include:/usr/X11R6/include | |
export CPLUS_INCLUDE_PATH=$C_INCLUDE_PATH | |
export MANPATH=$MANPATH:/usr/share/man:/usr/local/man | |
export HISTFILE=$HOME/.zsh_history | |
export HISTSIZE=10000 | |
export SAVEHIST=10000 | |
export EDITOR=vi | |
export PAGER=less | |
export LC_ALL=ja_JP.UTF-8 | |
export LANG=ja_JP.UTF-8 | |
export CC=gcc | |
export CXX=g++ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment