From e272f2ce212aad697ced9605593cda9c21b973cb Mon Sep 17 00:00:00 2001 From: Julien Moutinho <julm@sourcephile.fr> Date: Fri, 25 Dec 2020 18:33:10 +0100 Subject: [PATCH] bash: disable ctrl-s/ctrl-q flow control --- homes/softwares/bash.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homes/softwares/bash.nix b/homes/softwares/bash.nix index 786904c..a6ecb3b 100644 --- a/homes/softwares/bash.nix +++ b/homes/softwares/bash.nix @@ -8,6 +8,8 @@ programs.bash = { }; initExtra = '' shopt -s globstar + # Disable ctrl-s/ctrl-q flow control + stty -ixon ''; }; programs.direnv.enableBashIntegration = true; -- 2.47.2