15 lines
436 B
Bash
15 lines
436 B
Bash
BROWSER=firefox; export BROWSER
|
|
DOOMWADDIR=/mnt/partone/misc/doomwads/; export DOOMWADDIR
|
|
EDITOR=ed; export EDITOR
|
|
PAGER="less"; export PAGER
|
|
PLAN9=/usr/local/plan9; export PLAN9
|
|
PATH="$HOME/bin/:$HOME/bin/oneliners/:"$PATH":$PLAN9/bin"; export PATH
|
|
TERMINAL="uxterm"; export TERMINAL
|
|
UNITS_SYSTEM="si"; export UNITS_SYSTEM
|
|
|
|
ENV=$HOME/.env; export ENV
|
|
. $ENV
|
|
|
|
if [ "$0" = "bash" ] || [ "$0" = "-bash" ]; then complete -c man which; fi
|
|
|