Files
dotfiles/private_dot_config/zsh/history.zsh
2024-08-14 05:16:56 +02:00

17 lines
388 B
Bash

# Define the history file path
HISTFILE="$HOME/.cache/zsh/.zsh_history"
[ ! -d "$HOME/.cache/zsh" ] && mkdir -p "$HOME/.cache/zsh"
[ ! -f "$HISTFILE" ] && touch $HISTFILE
HISTSIZE=5000
SAVEHIST=$HISTSIZE
HISTDUP=erase
setopt appendhistory
setopt sharehistory
setopt hist_ignore_space
setopt hist_ignore_all_dups
setopt hist_save_no_dups
setopt hist_ignore_dups
setopt hist_find_no_dups