summaryrefslogtreecommitdiff
path: root/dash/profile
blob: a26bfb07d42672622123d19965c4fc5b9d702e70 (plain)
    1 #
    2 # /etc/profile: system-wide defaults for bash(1) login shells
    3 #
    4 
    5 if [ "`id -u`" = "0" ]; then
    6 	export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/opt/bin"
    7 else
    8 	export PATH="/bin:/usr/bin:/usr/X11R6/bin:/opt/bin"
    9 fi
   10 
   11 if [ ! -f ~/.inputrc ]; then
   12 	export INPUTRC="/etc/inputrc"
   13 fi
   14 
   15 export LESSCHARSET="latin1"
   16 export LESS="-R"
   17 export CHARSET="ISO-8859-1"
   18 export PS1="$ "
   19 export PS2="> "
   20 
   21 umask 022
   22 
   23 # Added by James Mills
   24 
   25 export LC_ALL="en_US.ISO-8859-1"
   26 
   27 export PATH="$PATH:~/bin:"
   28 
   29 export LS_OPTIONS='--color=auto'
   30 alias ls='ls $LS_OPTIONS'
   31 alias ll='ls $LS_OPTIONS -l'
   32 alias l='ls $LS_OPTIONS -lA'
   33 
   34 # Setup other special aliases
   35 
   36 export EDITOR=vim
   37 export PYTHONPATH=~/lib/python/
   38 
   39 if [ "$TERM" = "xterm" ]; then
   40 	export TERM=xterm-color
   41 fi
   42 
   43 # Set a nice keyboard rate/delay
   44 kbdrate -r 30 -d 250
   45 
   46 # End of file

Generated by cgit