Annotation of elwix/config/root.skel/cshrc, revision 1.1.1.1
1.1 misho 1: # ELWIX customized cshrc
2: #
3: # $Id: cshrc,v 1.3.2.1 2010/06/30 22:18:16 misho Exp $
4:
5: alias h history 250
6: alias j jobs -l
7: alias ls ls -GF
8: alias la ls -al
9: alias lf ls -FA
10: alias ll ls -lioA
11: alias l ls -lF
12: alias su su -m
13:
14: setenv EDITOR vi
15: setenv VISUAL ${EDITOR}
16: setenv EXINIT 'set autoindent'
17: setenv PAGER more
18:
19: #setenv LANG bg_BG
20: #setenv LANGUAGE bg
21: #setenv LC_ALL C
22: #setenv LC_CTYPE bg_BG.CP1251
23:
24:
25: set path = (~/bin /{,s}bin /usr/{,s}bin /usr/X11R6/{,s}bin /usr/local/{,s}bin)
26:
27: #alias keyon ssh-add -t 10800
28: #alias keyoff ssh-add -D
29: #alias keylist ssh-add -l
30: #if (! $?SSH_CLIENT) then
31: # source ~/.ssh-agent
32: # keyon
33: #endif
34:
35: if ($?prompt) then
36: set term = xterm-color
37: # set term = cons25
38: # An interactive shell -- set some stuff up
39: set filec
40: set history = 1000
41: set savehist = 1000 merge
42: set histfile = ~/.tcsh_history
43: # set ignoreeof
44: # set correct = complete
45: # set histdup = all
46: set autolist
47: set autoindent
48: set autocorrect
49: set correct = cmd
50: set color
51: set nobeep
52: set mail = (/var/mail/$USER)
53: # set mch = `hostname -s`
54: # set prompt = "${mch:q}: {\!} "
55: set prompt = "%n@%m:%B%~%b %U%l%u=%S%?%s %T%# "
56: if ( $?tcsh ) then
57: bindkey "^W" backward-delete-word
58: bindkey -k up history-search-backward
59: bindkey -k down history-search-forward
60: endif
61:
62: # FreeBSD TCL
63: setenv TCLLIBPATH /usr/local/lib/tcl8.5
64: # NetBSD TCL
65: # setenv TCLLIBPATH /usr/pkg/lib/tcl
66: # OpenBSD TCL
67: # setenv TCLLIBPATH /usr/local/lib/tcl
68: endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>