Merge branch 'vendor/OPENSSL'
[dragonfly.git] / etc / root / dot.cshrc
1 # $FreeBSD: src/etc/root/dot.cshrc,v 1.25.2.2 2001/03/05 13:36:53 asmodai Exp $
2 #
3 # .cshrc - csh resource script, read at beginning of execution by each shell
4 #
5 # see also csh(1), environ(7).
6 #
7
8 alias h         history 25
9 alias j         jobs -l
10 alias la        ls -a
11 alias lf        ls -FA
12 alias ll        ls -lA
13
14 # A righteous umask
15 umask 22
16
17 set path = (/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin /usr/pkg/bin /usr/pkg/sbin /usr/games $HOME/bin)
18
19 setenv  EDITOR  vi
20 setenv  PAGER   less
21 setenv  BLOCKSIZE       K
22
23 if ($?prompt) then
24         # An interactive shell -- set some stuff up
25         set prompt = "`hostname -s`# "
26         set filec
27         set history = 100
28         set savehist = 100
29         set mail = (/var/mail/$USER)
30         if ( $?tcsh ) then
31                 bindkey "^W" backward-delete-word
32                 bindkey -k up history-search-backward
33                 bindkey -k down history-search-forward
34         endif
35 endif