Existe el límite y las posibilidades de sus máquinas.
HISTFILE="$HOME/.zsh_history"
HISTSIZE=10000000
SAVEHIST=10000000
setopt BANG_HIST # Treat the '!' character specially during expansion.
setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format.
setopt INC_APPEND_HISTORY # Write to the history file immediately, not when the shell exits.
setopt SHARE_HISTORY # Share history between all sessions.
setopt HIST_EXPIRE_DUPS_FIRST # Expire duplicate entries first when trimming history.
setopt HIST_IGNORE_DUPS # Don't record an entry that was just recorded again.
setopt HIST_IGNORE_ALL_DUPS # Delete old recorded entry if new entry is a duplicate.
setopt HIST_FIND_NO_DUPS # Do not display a line previously found.
setopt HIST_IGNORE_SPACE # Don't record an entry starting with a space.
setopt HIST_SAVE_NO_DUPS # Don't write duplicate entries in the history file.
setopt HIST_REDUCE_BLANKS # Remove superfluous blanks before recording entry.
setopt HIST_VERIFY # Don't execute immediately upon history expansion.
setopt HIST_BEEP # Beep when accessing nonexistent history.
De la lista de correo de ZSH :
Debe determinar la cantidad de memoria que tiene, la cantidad que puede permitir que esté ocupada por el historial (AFAIK siempre está completamente cargada en la memoria) y actuar en consecuencia. Eliminar el límite no es más sabio, ya que te deja con la idea de que no hay límite, mientras que siempre está limitado por los recursos disponibles.
O si no cree que alguna vez tendrá un problema con el agotamiento de los recursos, puede establecer HISTSIZE en LONG_MAX desde los límites. H: es el número máximo que HISTSIZE puede tener.
Que explican la solución Gentoo:
export HISTSIZE=2000
export HISTFILE="$HOME/.history"
El historial no se guardará sin el siguiente comando:
export SAVEHIST=$HISTSIZE
Para evitar que el historial registre entradas duplicadas (como ls -l ingresado muchas veces durante una sesión de shell única), puede configurar la opción hist_ignore_all_dups:
setopt hist_ignore_all_dups
Un truco útil para evitar que entradas particulares se registren en un historial precediéndolas con al menos un espacio.
setopt hist_ignore_space