onintr -
if ( -d /etc/profile.d ) then
set nonomatch
foreach _s ( /etc/profile.d/*.csh )
if ( -r $_s ) then
source $_s
endif
end
unset _s nonomatch
endif
if (! ${?prompt}) goto end
if ($?tcsh && -r /etc/profile.d/bindkey.tcsh) then
source /etc/profile.d/bindkey.tcsh
endif
set path=( /bin $path:q )
if ($?tcsh && -r /etc/profile.d/complete.tcsh) then
source /etc/profile.d/complete.tcsh
endif
set path=( $path[2-]:q )
if (-r "$HOME/.cshrc" || -r "$HOME/.tcshrc") goto end
if ($?tcsh) then
set prompt='[%n@%m %c02]$ '
else
set prompt=\[`id -un`@`hostname`\]\$\
endif
set autocorrect=1
set autolist=ambiguous
unset autologout
set complete=enhance
set correct=cmd
set echo_style=both
set ellipsis
set fignore=(.o \~)
set histdup=erase
set history=100
unset ignoreeof
set listjobs=long
set listmaxrows=23
set notify=1
set rmstar=1
set savehist=( $history merge )
set showdots=1
set symlinks=expand
alias ++ pushd
alias -- popd
alias d dirs
alias h history
alias j jobs
alias l 'ls -C'
alias la 'ls -a'
alias ll 'ls -l'
alias ls 'ls --color'
end:
onintr