aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-02-23 00:13:20 +1300
committerTom Ryder <tom@sanctum.geek.nz>2012-02-23 00:13:20 +1300
commitbda70c700248f78b47e0acb0e612fa1e51b3a91e (patch)
tree11c15adaf71615eaef0c2cfb587729d066645a15 /bash
parentUse two spaces for history after time. (diff)
downloaddotfiles-bda70c700248f78b47e0acb0e612fa1e51b3a91e.tar.gz
dotfiles-bda70c700248f78b47e0acb0e612fa1e51b3a91e.zip
Move setterm call down a bit.
Diffstat (limited to 'bash')
-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