diff --git a/.zshrc b/.zshrc index e670d52..ff357b1 100644 --- a/.zshrc +++ b/.zshrc @@ -470,26 +470,25 @@ bindkey -M viins "^_" undo ### Zsh Options ### -## Input/Output +## Changing Directories +setopt no_auto_cd +## Expansion and Globbing +setopt equals + +## Input/Output +setopt no_clobber setopt correct setopt interactive_comments - -# Disallow `>` to overwrite existing files. Use `>|` or `>!` instead. -setopt no_clobber - +setopt no_print_exit_value ## Job control - -# Prevent background jobs being given a lower priority. +setopt auto_continue setopt no_bg_nice - -# Prevent status report of jobs on shell exit. -setopt no_check_jobs - -# Prevent SIGHUP to jobs on shell exit. +setopt check_jobs setopt no_hup + # Remove path duplicates typeset -U path fpath