dotfiles/profilevars

19 lines
545 B
Plaintext

# this and included scripts should be written in portable shell.
PATH=$HOME/.bin:$PATH
EDITOR="emacs -nw"
PAGER=most
LC_ALL=en_US.UTF-8
# Platorm Specific Vars
case $OSTYPE in
darwin*)
[ -f ~/dotfiles/profilevars_mac ] && . ~/dotfiles/profilevars_mac
;;
freebsd*)
[ -f ~/dotfiles/profilevars_bsd ] && . ~/dotfiles/profilevars_bsd
;;
linux-gnu)
[ -f ~/dotfiles/profilevars_linux ] && . ~/dotfiles/profilevars_linux
;;
esac
export PATH EDITOR GIT_EDITOR PAGER BROSWER LC_ALL
[ -f ~/.profilesvars.local ] && . ~/.profilevars.local