aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-05-22 12:54:41 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-05-22 12:54:41 +1200
commit34019f9d72b46947f0b3c8e3e660a96ded95b439 (patch)
treeb925c63ac049072604d61da677ba0a7067aa5290
parentCheck option existence before setting. (diff)
downloaddotfiles-34019f9d72b46947f0b3c8e3e660a96ded95b439.tar.gz
dotfiles-34019f9d72b46947f0b3c8e3e660a96ded95b439.zip
Reorder options alphabetically.
Messes with my Aspergers' otherwise.
-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='...'