From 83a3b1eb8d1f365d50342de6c7a2f1c10eb9635a Mon Sep 17 00:00:00 2001 Message-Id: <83a3b1eb8d1f365d50342de6c7a2f1c10eb9635a.1717908489.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 5 May 2010 15:23:12 +0100 Subject: [PATCH] dot/bashrc: Minor options tweaks. Organization: Straylight/Edgeware From: Mark Wooding Enable `**' wildcards and GNU-style errors; omit things beginning with a space from the history. --- dot/bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dot/bashrc b/dot/bashrc index e8bf6a4..17e18bb 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -69,6 +69,8 @@ shopt -s cmdhist shopt -u dotglob shopt -s expand_aliases shopt -s extglob +shopt -s globstar +shopt -s gnu_errfmt shopt -s histappend shopt -s histreedit shopt -u histverify @@ -83,6 +85,8 @@ shopt -s promptvars shopt -u shift_verbose shopt -s sourcepath +HISTCONTROL=ignorespace:erasedups + # --- Set the CDPATH --- # # CDPATH=~/src:/usr/src:/usr/lib:/usr/share -- [mdw]