Annotation of elwix/config/root.skel/cshrc, revision 1.1.1.1.2.1

1.1       misho       1: # ELWIX customized cshrc
                      2: #
1.1.1.1.2.1! misho       3: # $Id: cshrc,v 1.1.1.1 2011/07/05 23:43:00 misho Exp $
1.1       misho       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:        # An interactive shell -- set some stuff up
                     38:        set filec
                     39:        set history = 1000
                     40:        set savehist = 1000 merge
                     41:        set histfile = ~/.tcsh_history
                     42: #      set ignoreeof
                     43: #      set correct = complete
                     44: #      set histdup = all
                     45:        set autolist
                     46:        set autoindent
                     47:        set autocorrect
                     48:        set correct = cmd
                     49:        set color
                     50:        set nobeep
                     51:        set mail = (/var/mail/$USER)
                     52: #      set mch = `hostname -s`
                     53: #      set prompt = "${mch:q}: {\!} "
                     54:        set prompt = "%n@%m:%B%~%b %U%l%u=%S%?%s %T%# "
                     55:        if ( $?tcsh ) then
                     56:                bindkey "^W" backward-delete-word
                     57:                bindkey -k up history-search-backward
                     58:                bindkey -k down history-search-forward
                     59:        endif
                     60: 
                     61: # FreeBSD TCL
                     62:        setenv TCLLIBPATH /usr/local/lib/tcl8.5
                     63: # NetBSD TCL
                     64: #      setenv TCLLIBPATH /usr/pkg/lib/tcl
                     65: # OpenBSD TCL
                     66: #      setenv TCLLIBPATH /usr/local/lib/tcl
                     67: endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>