2022-05-24 23:48:16 -07:00

15 lines
245 B
Bash

# automatically cd into a given directory
setopt autocd
# history options
setopt append_history
setopt hist_ignore_all_dups
# command correction
setopt correctall
# prevent accidental overwriting of a file
setopt noclobber
# vim: syntax=zsh