From ac5cbad4c0033adfc9bead508ffdfbda5a77278b Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 31 Oct 2016 09:08:48 +0200 Subject: [PATCH] .zshrc: Set ignore space option correctly Jesus, this was clearly UNSETTING the option, for all these years! --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 1470b9a..b1f442b 100644 --- a/.zshrc +++ b/.zshrc @@ -3,7 +3,7 @@ HISTSIZE=1000 SAVEHIST=1000 setopt append_history # append setopt hist_ignore_all_dups # no duplicate -unsetopt hist_ignore_space # ignore space prefixed commands +setopt hist_ignore_space # ignore space prefixed commands setopt hist_reduce_blanks # trim blanks setopt inc_append_history # add commands as they are typed, don't wait until shell exit setopt share_history # share hist between sessions