diff options
| author | Eitan Adler <eadler@FreeBSD.org> | 2012-03-24 18:43:18 +0000 |
|---|---|---|
| committer | Eitan Adler <eadler@FreeBSD.org> | 2012-03-24 18:43:18 +0000 |
| commit | 12330831079d241796cb1a047c895ca01745391b (patch) | |
| tree | 8c630673f109c30f44175b023a858a57118fd76a /etc/root | |
| parent | d05ed9dcd15a8c4e5deca9cda06021239be63c2b (diff) | |
Notes
Diffstat (limited to 'etc/root')
| -rw-r--r-- | etc/root/dot.cshrc | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/etc/root/dot.cshrc b/etc/root/dot.cshrc index 36df9c61f71d..515f1b7d10da 100644 --- a/etc/root/dot.cshrc +++ b/etc/root/dot.cshrc @@ -3,13 +3,14 @@ # .cshrc - csh resource script, read at beginning of execution by each shell # # see also csh(1), environ(7). +# more examples available at /usr/share/examples/csh/ # alias h history 25 alias j jobs -l -alias la ls -a +alias la ls -aF alias lf ls -FA -alias ll ls -lA +alias ll ls -lAF # A righteous umask umask 22 @@ -17,19 +18,30 @@ umask 22 set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin) setenv EDITOR vi -setenv PAGER more +setenv PAGER less setenv BLOCKSIZE K if ($?prompt) then # An interactive shell -- set some stuff up - set prompt = "`/bin/hostname -s`# " + set prompt = "%n@%m:%c04%# " + set promptchars = "%#" + set filec - set history = 100 - set savehist = 100 + set history = 1000 + set savehist = 1000 + set autolist = ambiguous + # Use history to aid expansion + set autoexpand + set autorehash set mail = (/var/mail/$USER) if ( $?tcsh ) then bindkey "^W" backward-delete-word bindkey -k up history-search-backward bindkey -k down history-search-forward + + bindkey "\e[1~" beginning-of-line #make Home key work; + bindkey "\e[3~" delete-char #make Delete key work; + bindkey "\e[4~" end-of-line #make End key work; endif + endif |
