dot.cshrc revision 1.1
1#	$NetBSD: dot.cshrc,v 1.1 2000/10/16 13:12:26 simonb Exp $
2#csh .cshrc file
3
4alias h		history 25
5alias j		jobs -l
6alias la	ls -a
7alias lf	ls -FA
8alias ll	ls -lA
9alias su	su -m
10
11setenv	EDITOR	vi
12setenv	VISUAL	${EDITOR}
13setenv	EXINIT	'set autoindent'
14setenv	PAGER	more
15
16set path = (~/bin /bin /sbin /usr/{bin,sbin,X11R6/bin,pkg/{,s}bin,games} \
17	    /usr/local/{,s}bin)
18
19if ($?prompt) then
20	# An interactive shell -- set some stuff up
21	set filec
22	set history = 1000
23	set ignoreeof
24	set mail = (/var/mail/$USER)
25	set mch = `hostname -s`
26	set prompt = "${mch:q}: {\!} "
27	umask 2
28endif
29