8 lines
199 B
Bash
8 lines
199 B
Bash
# History file (so even non-interactive sessions log commands)
|
|
HISTFILE=$ZDOTDIR/.zsh_history
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
|
|
# Options to make history nicer
|
|
setopt HIST_IGNORE_DUPS HIST_IGNORE_SPACE
|