Skip to content

Instantly share code, notes, and snippets.

@PlumpAlbert
PlumpAlbert / zi.zsh
Last active February 7, 2026 08:57
Personal configuration for ZSH
#!/usr/bin/env zsh
HISTSIZE=5000
HISTFILE="${HOME}/.zsh_history"
SAVEHIST="${HISTSIZE}"
HISTDUP=erase
setopt appendhistory # Allow multiple sessions to append to one Zsh command history.
setopt extended_history # Show timestamp in history.
setopt hist_expire_dups_first # Expire A duplicate event first when trimming history.
setopt hist_find_no_dups # Do not display a previously found event.