diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-02-27 12:08:30 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-02-27 12:08:30 +0100 |
commit | ad457456f466c46326d7bd0245ffd6eeab360f13 (patch) | |
tree | 0f26a9764183a385b6244ec1ea12fba542bdc222 | |
parent | 4c0198f0fe247f3e6b15da7433d15dc6a896d7bf (diff) | |
download | dotfiles-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`
-rw-r--r-- | .bash_profile | 6 |
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" |