9 lines
172 B
Bash
9 lines
172 B
Bash
export ZDOTDIR="$HOME/.config/zsh"
|
|
|
|
HISTFILE=$ZDOTDIR/.zsh_history
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
|
|
# Options to make history nicer
|
|
setopt HIST_IGNORE_DUPS HIST_IGNORE_SPACE
|