zsh/dot-config/zsh/interactive/history
2023-10-23 15:20:13 +11:00

11 lines
211 B
Bash

#! zsh
HISTFILE=$XDG_DATA_HOME/zsh/history
mkdir -p ${HISTFILE:h}
HISTSIZE=50000
SAVEHIST=$HISTSIZE
setopt extended_history
setopt hist_ignore_all_dups hist_ignore_space
setopt hist_verify
setopt share_history