aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bash/bashrc12
1 files changed, 6 insertions, 6 deletions
diff --git a/bash/bashrc b/bash/bashrc
index bd06783a..07f923d9 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -23,21 +23,21 @@ shopt checkwinsize &>/dev/null && shopt -s checkwinsize
# Put multi-line commands onto one line of history.
shopt cmdhist &>/dev/null && shopt -s cmdhist
+# Autocorrect fudged paths during completion.
+shopt dirspell &>/dev/null && shopt -s dirspell
+
# Include dotfiles in pattern matching.
shopt dotglob &>/dev/null && shopt -s dotglob
# Enable advanced pattern matching.
shopt extglob &>/dev/null && shopt -s extglob
-# Append rather than overwrite Bash history.
-shopt histappend &>/dev/null && shopt -s histappend
-
-# Autocorrect fudged paths during completion.
-shopt dirspell &>/dev/null && shopt -s dirspell
-
# Enable double-starring paths.
shopt globstar &>/dev/null && shopt -s globstar
+# Append rather than overwrite Bash history.
+shopt histappend &>/dev/null && shopt -s histappend
+
# Simple prompt.
PS1='\u@\h:\w\$ '
PS2='...'