b244625d8a
Sat Apr 10 2004 Jens Petersen <petersen@redhat.com> - 4.2.0-1 - update to 4.2.0 stable release - zsh-4.0.7-bckgrnd-bld-102042.patch no longer needed - add compinit and various commented config improvements to .zshrc (Eric Hattemer,#114887) - include zshprompt.pl in doc dir (Eric Hattemer) - drop setenv function from zshrc
40 lines
742 B
Plaintext
40 lines
742 B
Plaintext
#
|
|
# .zshrc is sourced in interactive shells.
|
|
# It should contain commands to set up aliases,
|
|
# functions, options, key bindings, etc.
|
|
#
|
|
|
|
# source profile like .bashrc
|
|
if [ -f /etc/profile ]; then
|
|
source /etc/profile
|
|
fi
|
|
|
|
autoload -U compinit
|
|
compinit
|
|
|
|
#allow tab completion in the middle of a word
|
|
setopt COMPLETE_IN_WORD
|
|
|
|
## keep background processes at full speed
|
|
#setopt NOBGNICE
|
|
## restart running processes on exit
|
|
#setopt HUP
|
|
|
|
## history
|
|
#setopt APPEND_HISTORY
|
|
## for sharing history between zsh processes
|
|
#setopt INC_APPEND_HISTORY
|
|
#setopt SHARE_HISTORY
|
|
|
|
## never ever beep ever
|
|
#setopt NO_BEEP
|
|
|
|
## automatically decide when to page a list of completions
|
|
#LISTMAX=0
|
|
|
|
## disable mail checking
|
|
#MAILCHECK=0
|
|
|
|
# autoload -U colors
|
|
#colors
|