settings.zsh 665 B

1234567891011121314151617181920212223242526272829
  1. # self explicit
  2. setopt auto_remove_slash
  3. # resolve symlinks
  4. setopt chase_links
  5. # correct commands spellings
  6. setopt correct
  7. # complex pattern globbing
  8. setopt extended_glob
  9. # include dotfiles in globbing
  10. setopt glob_dots
  11. # no bell on error
  12. unsetopt beep
  13. # no lower prio for background jobs
  14. unsetopt bg_nice
  15. # must use >| to truncate existing files
  16. unsetopt clobber
  17. # no bell on error in history
  18. unsetopt hist_beep
  19. # no hup signal at shell exit
  20. unsetopt hup
  21. # do not exit on end-of-file
  22. unsetopt ignore_eof
  23. # no bell on ambiguous completion
  24. unsetopt list_beep
  25. # ask for confirmation for `rm *' or `rm path/*'
  26. unsetopt rm_star_silent
  27. # dircolors
  28. eval "$(dircolors -b)"