From b1cbd7b1fa4a732dc928ab6943c43b2bc3f992a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Mon, 9 Mar 2026 13:08:29 +0100 Subject: [PATCH] feat(zsh): enable sensible shell options --- zsh/.zshrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 8944320..5c460d1 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -18,7 +18,12 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#ffffff,bg=cyan,bold,underline" source "$ZDOTDIR/.antidote/antidote.zsh" antidote load -unsetopt autocd +# shell options +unsetopt autocd # don't cd into directories by name +setopt NO_BEEP # no terminal bell +setopt AUTO_PUSHD # cd pushes to directory stack +setopt PUSHD_IGNORE_DUPS # no duplicates in directory stack +setopt EXTENDED_GLOB # enable extended glob operators (#, ~, ^) # ggman eval "$(ggman shellrc)"