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
|