source: hybrid/branches/releng-11/nanobsd/files/root/.cshrc@ 14263

Last change on this file since 14263 was 13716, checked in by rick, 8 years ago

Removing FIB support, used at the 'old' proxies.

Since the only proxy configuration we support is the iLeiden based one, this is
no longer relevant.

File size: 908 bytes
Line 
1# $FreeBSD: releng/9.0/etc/root/dot.cshrc 170088 2007-05-29 06:37:58Z dougb $
2#
3# .cshrc - csh resource script, read at beginning of execution by each shell
4#
5# see also csh(1), environ(7).
6#
7
8alias h history 25
9alias j jobs -l
10alias la ls -a
11alias lf ls -FA
12alias ll ls -lA
13
14# A righteous umask
15umask 22
16
17set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin /tools)
18
19setenv EDITOR vim
20setenv PAGER more
21setenv BLOCKSIZE K
22
23if ($?prompt) then
24 # An interactive shell -- set some stuff up
25 set prompt = "`/bin/hostname -s`# "
26 set filec
27 set histfile = /tmp/.history
28 set history = 1000
29 set savehist = 1000
30 set mail = (/var/mail/$USER)
31 if ( $?tcsh ) then
32 bindkey "^W" backward-delete-word
33 bindkey -k up history-search-backward
34 bindkey -k down history-search-forward
35 endif
36endif
37
38if ($?prompt) then
39 [ -x /etc/motd.cshrc ] && source /etc/motd.cshrc
40endif
Note: See TracBrowser for help on using the repository browser.