dotfiles/profilevars

19 lines
545 B
Plaintext
Raw Permalink Normal View History

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