6 lines
167 B
Bash
6 lines
167 B
Bash
|
# Keep 5000 lines of history within the shell and save it to ~/.zsh_history:
|
||
|
setopt histignorealldups sharehistory
|
||
|
HISTSIZE=5000
|
||
|
SAVEHIST=5000
|
||
|
HISTFILE=~/.zsh_history
|