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