initial checkin
[zsh-lovers.git] / zsh_people / bruno_bonfils / rc / options.rc
1 # -*- shell-script -*-
2 #
3 # Zsh Options
4 #
5
6 export LISTPROMPT       # in order to scroll if completion list is too big
7
8 setopt auto_cd          # a commande like % /usr/local is equivalent to cd /usr/local
9 setopt nohup            # don't send HUP signal when closing term session
10 setopt extended_glob    # in order to use #, ~ and ^ for filename generation
11 setopt always_to_end    # move to cursor to the end after completion
12 setopt notify           # report the status of backgrounds jobs immediately
13 setopt correct          # try to correct the spelling if possible
14 setopt rmstarwait       # wait 10 seconds before querying for a rm which contains a *
15 setopt printexitvalue   # show the exit-value if > 0
16
17 # Don't ecrase file with >, use >| (overwrite) or >> (append) instead 
18 set -C