diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index a858df8..d1c4900 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -1,3 +1,6 @@ +# Make ctrl-q and ctrl-s available to terminal applications. +stty start undef stop undef + # Set up zsh for interactive use (options, prompt, aliases, etc.) source "$ZDOTDIR/aliases.zsh" source "$ZDOTDIR/completion.zsh" @@ -23,8 +26,5 @@ local_config="$HOME/.local/etc/zsh/zshrc" [ -r "$local_config" ] && source "$local_config" unset local_config -# Prevent ctrl-s from freezing the terminal. -stty stop undef - # Allow comments in interactive use. setopt INTERACTIVE_COMMENTS