history.zsh 431 B

123456789101112131415161718192021
  1. #
  2. # History options
  3. #
  4. setopt extendedhistory # add a timestamp and the duration of each command
  5. setopt sharehistory # _all_ zsh sessions share the same history files
  6. setopt histignorealldups # ignores duplications
  7. HISTDIR="$DOTZSHDIR/history"
  8. if [ ! -d "$HISTDIR" ]; then
  9. mkdir -p "$HISTDIR"
  10. fi
  11. HISTFILE="$HISTDIR/history"
  12. HISTSIZE=1000000
  13. SAVEHIST=1000000
  14. export HISTFILE HISTSIZE SAVEHIST
  15. unset HISTDIR