options.zsh 716 B

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