# .tcshrc - tcsh resource script, read at beginning of tcsh start-up
#
# see also tcsh(1), environ(7).
#
# modified by jameslin (2001-02-10)
#
# for soda.csua.berkeley.edu
if ($?prompt) then
setenv EDITOR $HOME/bin/pico
setenv PAGER /usr/bin/less
# command-line args to less : quit if only one screen, ignore case
setenv LESS '-Fi -z-2 -P?f%f:<stdin>.?lb (%lb?L/%L.).?e EOF.'
setenv LYNX_CFG $HOME/.lynx.cfg
set history = 50
set savehist = 10
set histdup = erase
set ignoreeof notify filec noclobber autoexpand
set echo_style = both # should be default, but tcsh under BSD misbehaves
set complete = enhance
set autolist = ambiguous
set matchbeep = nomatch
set symlinks = chase
set mail = (/var/mail/$USER)
set prompt = '%~ > '
# set LPDEST = lw274
if ($?path) then
set path = ( . \
$HOME/bin \
$path )
endif
setenv MANPATH "/usr/share/man:/usr/X11/man:/usr/local/man:/csua/man"
mesg y
# wallall -y > /dev/null
biff y
if (-e $HOME/.alias.tcsh) \
source $HOME/.alias.tcsh
endif
... more stuff
___________________________________________________________________________
page updated: (see above) home . about . stuff . links
copyright (c) 2001 james lin
|