Move history options below zim init so they are not overridden

This commit is contained in:
Adam Goldsmith 2020-01-12 20:38:39 -05:00
parent fccf010a3a
commit c74a679f49
1 changed files with 5 additions and 5 deletions

10
.zshrc
View File

@ -4,11 +4,6 @@ then
source ~/.zim/zimfw.zsh install
fi
# Remove older command from the history if a duplicate is to be added.
setopt HIST_IGNORE_ALL_DUPS
unsetopt SHARE_HISTORY
setopt INC_APPEND_HISTORY
# Set editor default keymap to emacs
bindkey -e
stty -ixon #disable XON/XOFF, which breaks C-s
@ -49,6 +44,11 @@ source $HOME/.aliases/general
# Various Options
unsetopt NOMATCH # turn off "no matches found" on glob failure
# Remove older command from the history if a duplicate is to be added.
setopt HIST_IGNORE_ALL_DUPS
unsetopt SHARE_HISTORY # don't share history between terminals
setopt INC_APPEND_HISTORY
# rehashes on bin change, might cause performance issues
zstyle ':completion:*' rehash true