aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-05-22 10:09:44 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-05-22 10:09:44 +1200
commita8944bb2e2d6bc63156533ff7233bb29142674b4 (patch)
tree38a7c9e5dad8f1587123888a17bf3fa3d50d1299
parentConditional wrapping for :W re-remapping (diff)
downloaddotfiles-a8944bb2e2d6bc63156533ff7233bb29142674b4.tar.gz
dotfiles-a8944bb2e2d6bc63156533ff7233bb29142674b4.zip
Set dirspell and globstar options.
-rw-r--r--bash/bashrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/bash/bashrc b/bash/bashrc
index e5e8577a..70ee5f67 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -23,12 +23,18 @@ shopt -s checkwinsize
# Put multi-line commands onto one line of history.
shopt -s cmdhist
+# Autocorrect fudged paths during completion.
+shopt -s dirspell
+
# Include dotfiles in pattern matching.
shopt -s dotglob
# Enable advanced pattern matching.
shopt -s extglob
+# Enable double-starring paths.
+shopt -s globstar
+
# Append rather than overwrite Bash history.
shopt -s histappend