# sourced by both interactive and non-interactive shells # zsh environmental variables export HISTFILE="$HOME/.zsh_history" #zsh hist file export HISTSIZE='100000' #zsh hist buffer size export PATH="$HOME/bin:$PATH" export PROMPT="%B%n%b@%B%m%b(%~)%# " export SAVEHIST='100000' #zsh hist file size # personal utility preferences export CVS_RSH='ssh' export EDITOR='vi' export GZIP='-9' export LESS='--quit-at-eof --quit-if-one-screen --hilite-search --LONG-PROMPT' export PAGER='less' export WWW_HOME='http://google.com/'