From d8dc8c765582a7349746fa0085ac28c3d3293aff Mon Sep 17 00:00:00 2001
From: Santiago Lo Coco <slococo@slc.ar>
Date: Sun, 2 Mar 2025 10:57:52 +0100
Subject: [PATCH] Update zsh dotfiles

---
 dotfiles/.config/zsh/.zshrc | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/dotfiles/.config/zsh/.zshrc b/dotfiles/.config/zsh/.zshrc
index 7ca2313..fc51c5c 100644
--- a/dotfiles/.config/zsh/.zshrc
+++ b/dotfiles/.config/zsh/.zshrc
@@ -21,9 +21,9 @@ setopt HIST_SAVE_NO_DUPS
 setopt HIST_IGNORE_ALL_DUPS
 setopt HIST_IGNORE_SPACE
 setopt globdots
-setopt extended_glob
 setopt menu_complete
-setopt no_case_glob no_case_match
+setopt no_case_glob
+setopt no_case_match
 setopt interactive_comments
 
 bindkey -v
@@ -31,17 +31,20 @@ bindkey -M menuselect 'h' vi-backward-char
 bindkey -M menuselect 'k' vi-up-line-or-history
 bindkey -M menuselect 'j' vi-down-line-or-history
 bindkey -M menuselect 'l' vi-forward-char
-bindkey '^E' edit-command-line
 bindkey -M vicmd '^e' edit-command-line
 bindkey -M vicmd '^[[P' vi-delete-char
 bindkey -M visual '^[[P' vi-delete
+bindkey '^E' edit-command-line
 bindkey "^H" backward-delete-char
 bindkey "^?" backward-delete-char
 bindkey "^R" history-incremental-search-backward
+bindkey "^S" history-incremental-search-forward
 bindkey "^[[A" history-search-backward
 bindkey "^[[B" history-search-forward
 bindkey '^[[P' delete-char
 
+stty stop undef
+
 zle-keymap-select () {
     case $KEYMAP in
         vicmd) echo -ne '\e[1 q';;