From 08a1557a6896fe5772374a588cefafcc7e352493 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 17 Jun 2026 15:47:38 +0100 Subject: Allow unmatched globs in zsh --- dot_config/zsh/dot_zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'dot_config/zsh') 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 - 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" -- cgit v1.3.1