dotfiles/zsh/.config/zsh/options.zsh
2022-12-07 18:32:41 -08: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