Files
dotfiles/zsh/.config/zsh/conf.d/options
Eric Torres 7cac723651 Revert "Merge branch 'macOS'"
This reverts commit ba6ceea30f, reversing
changes made to 43a6b71d41.
2022-12-07 16:13:58 -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