From 69247fe8f6dbe792ad1c4361ebb53393e0405570 Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Mon, 20 Jul 2020 09:11:11 -0400 Subject: [PATCH] Resolve screen freezing on ctrl-s --- bash/.bashrc | 2 ++ zsh/.zshrc | 1 + 2 files changed, 3 insertions(+) diff --git a/bash/.bashrc b/bash/.bashrc index 09d3182..92dce65 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -12,3 +12,5 @@ export DISPLAY=:0 export LIBGL_ALWAYS_INDIRECT=1 export FZF_DEFAULT_COMMAD="find -L" export PATH="$PATH:/opt/mssql-tools/bin" + +stty -ixon # disable ctrl-s terminal freeze diff --git a/zsh/.zshrc b/zsh/.zshrc index 394163f..e38d56f 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -83,3 +83,4 @@ man() { command man "$@" } +stty -ixon # remove ctrl-s terminal freeze