dotfiles/profilevars

23 lines
481 B
Plaintext

# this and included scripts should be written in portable shell.
PATH=$HOME/.bin:$PATH
EDITOR="emacsclient -n"
GIT_EDITOR="emacsclient"
BROWSER="firefox"
PAGER=most
LC_ALL=en_US.UTF-8
if [ -z "SSH_AGENT_PID" ] ; then
eval `ssh-agent`
fi
# Platorm Specific Vars
case $OSTYPE in
darwin*)
. ~/dotfiles/profilevars_mac
;;
freebsd*)
. ~/dotfiles/profilevars_bsd
;;
linux-gnu)
. ~/dotfiles/profilevars_linux
;;
esac
export PATH EDITOR GIT_EDITOR PAGER BROSWER LC_ALL