aboutsummaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2012-02-27 12:08:30 +0100
committerMathias Bynens <mathias@qiwi.be>2012-02-27 12:08:30 +0100
commitad457456f466c46326d7bd0245ffd6eeab360f13 (patch)
tree0f26a9764183a385b6244ec1ea12fba542bdc222 /.bash_profile
parent4c0198f0fe247f3e6b15da7433d15dc6a896d7bf (diff)
downloaddotfiles-ad457456f466c46326d7bd0245ffd6eeab360f13.tar.gz
dotfiles-ad457456f466c46326d7bd0245ffd6eeab360f13.tar.bz2
dotfiles-ad457456f466c46326d7bd0245ffd6eeab360f13.zip
.bash_profile: Tweaks
* Append to the Bash history file, rather than overwriting it * Autocorrect typos in path names when using `cd`
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile6
1 files changed, 6 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile
index 48739fe..76e2dba 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -8,6 +8,12 @@ unset file
# Case-insensitive globbing (used in pathname expansion)
shopt -s nocaseglob
+# Append to the Bash history file, rather than overwriting it
+shopt -s histappend
+
+# Autocorrect typos in path names when using `cd`
+shopt -s cdspell
+
# Prefer US English and use UTF-8
export LC_ALL="en_US.UTF-8"
export LANG="en_US"