#csh .cshrc file

if ($?prompt) then
	# An interactive shell -- set some stuff up
	set prompt="`whoami`@`hostname -s`% "
	set filec
	set edit
	set history = 100
	set savehist = 100
	set mail = (/var/mail/$USER)
	if ( $?tcsh ) then
		bindkey "^W" backward-delete-word
		bindkey -k up history-search-backward
		bindkey -k down history-search-forward
	endif
endif
