config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

.profile (766B)


      1 # ksh profile
      2 
      3 set -a
      4 
      5 IFS='
      6 '
      7 PATH=.:"$HOME"/bin:"$PATH"
      8 
      9 LANG=en_US.UTF-8
     10 
     11 CC=tcc
     12 PAGER=less
     13 BROWSER=links
     14 
     15 XDG_CACHE_HOME="$HOME"/sys/var/cache
     16 XDG_CONFIG_HOME="$HOME"/sys/config
     17 XDG_DATA_HOME="$HOME"/sys/data
     18 
     19 MAKEFLAGS=-e
     20 MANPREFIX=/usr/local/man
     21 PREFIX=/usr/local
     22 
     23 # Some programs don't respect TERM, some don't recognize VISUAL,
     24 # this should be fool-proof.
     25 case "$TERM" in
     26 (dumb)
     27 	EDITOR=ed ;;
     28 (*)
     29 	EDITOR=vi ;;
     30 esac
     31 
     32 # Plan9port Specific
     33 if test -d /usr/local/plan9
     34 then
     35 	PLAN9=/usr/local/plan9
     36 	PATH="$PATH":"$PLAN9"/bin
     37 	#font="$PLAN9"/font/fixed/unicode.7x13.font
     38 	# More attractive than the last, but not uniform with unicode
     39 	#font="$PLAN9"/font/misc/unicode.6x13.font
     40 	font="/usr/local/plan9/font/lucsans/euro.8.font"
     41 fi
     42 
     43 ENV="$XDG_CONFIG_HOME/kshrc"