dot.cshrc revision 1.3
1#	$NetBSD: dot.cshrc,v 1.3 2003/04/24 01:02:26 perry Exp $
2#
3# This is the default .cshrc file.
4# Users are expected to edit it to meet their own needs.
5#
6# The commands in this file are executed each time a new csh shell
7# is started.
8#
9# See csh(1) for details.
10#
11
12alias h		history 25
13alias j		jobs -l
14alias la	ls -a
15alias lf	ls -FA
16alias ll	ls -lA
17alias su	su -m
18
19setenv	EDITOR	vi
20setenv	VISUAL	${EDITOR}
21setenv	EXINIT	'set autoindent'
22setenv	PAGER	more
23
24set path = (~/bin /bin /sbin /usr/{bin,sbin,X11R6/bin,pkg/{,s}bin,games} \
25	    /usr/local/{,s}bin)
26
27if ($?prompt) then
28	# An interactive shell -- set some stuff up
29	set filec
30	set history = 1000
31	set ignoreeof
32	set mail = (/var/mail/$USER)
33	set mch = `hostname -s`
34	set prompt = "${mch:q}: {\!} "
35endif
36