dotfiles/zsh/func/init-rc-zsh-history

22 lines
414 B
Text
Raw Normal View History

2021-12-31 11:54:55 -08:00
#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
2024-09-30 11:13:10 -07:00
function init-rc-zsh-history
2021-12-31 11:54:55 -08:00
{
setopt \
APPEND_HISTORY \
EXTENDED_HISTORY \
INC_APPEND_HISTORY \
HIST_FIND_NO_DUPS \
HIST_IGNORE_SPACE \
HIST_NO_STORE \
HIST_IGNORE_DUPS \
HIST_REDUCE_BLANKS
HISTSIZE=1000000
SAVEHIST=1000000
HISTFILE="$HOME/.zhistory"
}
2024-09-30 11:13:10 -07:00
init-rc-zsh-history "$@"