Notes

Zsh History Sharing & Size Configuration

· 1min
# History configuration
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000

# Share history across all sessions
setopt SHARE_HISTORY

# Additional useful options
setopt INC_APPEND_HISTORY    # Write to history file immediately
setopt HIST_IGNORE_DUPS      # Don't record duplicate entries
setopt HIST_FIND_NO_DUPS     # Don't display duplicates when searching



Comments