From d4d0e3938342e1e876468cd0b53cb180d8a06b26 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Tue, 30 Jul 2019 23:41:58 -0400 Subject: [PATCH] bash: reorganize lines in bashrc Nothing much to see here... --- bash/bashrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bash/bashrc b/bash/bashrc index 5242357..8253f08 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -4,9 +4,10 @@ # If not running interactively, don't do anything [ -z "$PS1" ] && return +[[ $- != *i* ]] && return # I'm paranoid... -# if interactive shell, disable XON/XOFF to allow forward search w CTRL-S -[[ $- == *i* ]] && stty -ixon +# Disable XON/XOFF to allow forward search w CTRL-S +stty -ixon # History Settings shopt -s histappend # append to the history file, don't overwrite it -- libgit2 0.28.4