add a workaround for drm:
[netbsd-mini2440.git] / etc / skel / dot.cshrc
blob857f0f38f33a66c47ae88e3ce560cd8e112081ef
1 #       $NetBSD: dot.cshrc,v 1.3 2003/04/24 01:02:26 perry Exp $
3 # This is the default .cshrc file.
4 # Users are expected to edit it to meet their own needs.
6 # The commands in this file are executed each time a new csh shell
7 # is started.
9 # See csh(1) for details.
12 alias h         history 25
13 alias j         jobs -l
14 alias la        ls -a
15 alias lf        ls -FA
16 alias ll        ls -lA
17 alias su        su -m
19 setenv  EDITOR  vi
20 setenv  VISUAL  ${EDITOR}
21 setenv  EXINIT  'set autoindent'
22 setenv  PAGER   more
24 set path = (~/bin /bin /sbin /usr/{bin,sbin,X11R7/bin,X11R6/bin,pkg/{,s}bin,games} \
25             /usr/local/{,s}bin)
27 if ($?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}: {\!} "
35 endif