From ad457456f466c46326d7bd0245ffd6eeab360f13 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Mon, 27 Feb 2012 12:08:30 +0100 Subject: .bash_profile: Tweaks * Append to the Bash history file, rather than overwriting it * Autocorrect typos in path names when using `cd` --- .bash_profile | 6 ++++++ 1 file changed, 6 insertions(+) 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" -- cgit v1.2.3