diff options
| -rw-r--r-- | dot_config/zsh/dot_zshrc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc index 5edd2ad..c697594 100644 --- a/dot_config/zsh/dot_zshrc +++ b/dot_config/zsh/dot_zshrc @@ -5,7 +5,7 @@ stty -ixon # disable XON/XOFF flow control (frees Ctrl-S/Ctrl-Q) ttyctl -f # freeze terminal state; programs can't leave it broken # ── Options ─────────────────────────────────────────────────────────────────── -# Note: appendhistory, nomatch, notify are zsh defaults — not set here. +# Note: appendhistory and notify are zsh defaults — not set here. setopt autocd # cd by typing directory name setopt extendedglob # extended glob patterns (#, ~, ^) setopt interactivecomments # allow # comments in interactive shell @@ -14,6 +14,7 @@ setopt prompt_subst # expand variables/functions in prompt setopt auto_pushd # cd pushes old dir onto stack (cd -<TAB> to browse) setopt pushd_ignore_dups # don't push duplicate dirs onto stack unsetopt beep # no terminal bell +unsetopt nomatch # leave unmatched globs alone (pasted URLs with ?) # ── History ─────────────────────────────────────────────────────────────────── HISTFILE="$XDG_STATE_HOME/zsh/history" |
