.zshrc: Set ignore space option correctly

Jesus, this was clearly UNSETTING the option, for all these years!
This commit is contained in:
Alan Orth 2016-10-31 09:08:48 +02:00
parent 6e0fc877d5
commit ac5cbad4c0
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 1 additions and 1 deletions

2
.zshrc
View File

@ -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