dot.cshrc revision 70892
150476Speter# $FreeBSD: head/share/skel/dot.cshrc 70892 2001-01-10 17:35:28Z archie $
218450Swosch#
358570Srwatson# .cshrc - csh resource script, read at beginning of execution by each shell
418450Swosch#
518450Swosch# see also csh(1), environ(7).
618450Swosch#
71638Srgrimes
81638Srgrimesalias h		history 25
91638Srgrimesalias j		jobs -l
101638Srgrimesalias la	ls -a
111638Srgrimesalias lf	ls -FA
121638Srgrimesalias ll	ls -lA
131638Srgrimes
1463199Srwatson# A righteous umask
1558570Srwatsonumask 22
1658570Srwatson
1758570Srwatsonset path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/X11R6/bin $HOME/bin)
1858570Srwatson
191638Srgrimessetenv	EDITOR	vi
201638Srgrimessetenv	PAGER	more
2112554Sjkhsetenv	BLOCKSIZE	K
221638Srgrimes
231638Srgrimesif ($?prompt) then
241638Srgrimes	# An interactive shell -- set some stuff up
251638Srgrimes	set filec
2612554Sjkh	set history = 100
2712554Sjkh	set savehist = 100
281638Srgrimes	set mail = (/var/mail/$USER)
2970892Sarchie	if ( $?tcsh ) then
3070892Sarchie		bindkey "^W" backward-delete-word
3170892Sarchie		bindkey -k up history-search-backward
3270892Sarchie		bindkey -k down history-search-forward
3370892Sarchie	endif
341638Srgrimesendif
35