aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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