This reverts commit ba6ceea30f63ee36474eda6f993adf423d3c4786, reversing changes made to 43a6b71d41f9d17f7c2a9728835cd9cd09116e95.
15 lines
245 B
Bash
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
|