0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Merge pull request #1663 from flavius/master

allow setting a custom HISTFILE before oh-my-zsh is loaded
This commit is contained in:
Robby Russell 2013-03-26 21:47:58 -07:00
commit 650bace5c5

View file

@ -1,5 +1,7 @@
## Command history configuration
HISTFILE=$HOME/.zsh_history
if [ -z $HISTFILE ]; then
HISTFILE=$HOME/.zsh_history
fi
HISTSIZE=10000
SAVEHIST=10000