]> arthur.barton.de Git - ax-zsh.git/blobdiff - default_plugins/history/history.zshrc
history: Make sure HISTFILE is set
[ax-zsh.git] / default_plugins / history / history.zshrc
index a70d304269ab03a4c75253a8ff244677490831a0..1c2bf378950630e0dea361343097c06b9ff1ab06 100644 (file)
@@ -1,13 +1,13 @@
 # AX-ZSH: Alex' Modular ZSH Configuration
 # history.zshrc: Setup ZSH history
 
-if [[ -z "$HISTFILE" ]]; then
-       # Save history file in cache directory, if not already present
-       # in $ZDOTDIR/$HOME:
-       [ -r "${ZDOTDIR:-$HOME}/.zsh_history" ] \
-               && HISTFILE="${ZDOTDIR:-$HOME}/.zsh_history" \
-               || HISTFILE="$ZSH_CACHE_DIR/history"
-fi
+function clear_history {
+       local HISTSIZE=0
+       cat /dev/null >"$HISTFILE"
+       fc -R
+}
+
+[[ -n "$HISTFILE" ]] || HISTFILE="${ZDOTDIR:-$HOME}/.zsh_history"
 
 HISTSIZE=10000
 SAVEHIST=10000
@@ -18,6 +18,8 @@ setopt hist_expire_dups_first
 setopt hist_ignore_dups
 setopt hist_ignore_space
 setopt hist_verify
+setopt histignorealldups
+setopt histignorespace
 setopt inc_append_history
 setopt share_history