aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bash/bashrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/bash/bashrc b/bash/bashrc
index 42ddb5bc..9644077d 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -32,9 +32,6 @@ shopt -s cmdhist
# Append rather than overwrite Bash history.
shopt -s histappend
-# Never beep at me.
-setterm -bfreq 0
-
# Simple prompt.
PS1='\u@\h:\w\$ '
@@ -58,6 +55,9 @@ fi
# Turn off annoying and useless flow control keys.
stty -ixon
+# Never beep at me.
+setterm -bfreq 0
+
# Use vi as my text editor, if available.
hash vi &>/dev/null
if [ $? -eq 0 ]; then