Add some mdoc markup and remove hard sentence breaks.
[dragonfly.git] / share / skel / dot.cshrc
1 # $FreeBSD: src/share/skel/dot.cshrc,v 1.10.2.3 2001/08/01 17:15:46 obrien Exp $
2 # $DragonFly: src/share/skel/dot.cshrc,v 1.3 2006/01/10 01:56:04 corecode Exp $
3 #
4 # .cshrc - csh resource script, read at beginning of execution by each shell
5 #
6 # see also csh(1), environ(7).
7 #
8
9 alias h         history 25
10 alias j         jobs -l
11 alias la        ls -a
12 alias lf        ls -FA
13 alias ll        ls -lA
14
15 # A righteous umask
16 umask 22
17
18 set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/pkg/sbin /usr/pkg/bin /usr/pkg/xorg/bin /usr/local/sbin /usr/local/bin $HOME/bin)
19
20 setenv  EDITOR  vi
21 setenv  PAGER   more
22 setenv  BLOCKSIZE       K
23
24 if ($?prompt) then
25         # An interactive shell -- set some stuff up
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