Browse code

would rather store history in $HOME and double size

James Cox authored on 22/09/2009 at 22:36:25
Showing 1 changed files
... ...
@@ -7,9 +7,8 @@ setopt HIST_IGNORE_DUPS
7 7
 
8 8
 ## Command history configuration
9 9
 #
10
-HISTFILE=$ZSH/log/.zsh_history
11
-HISTSIZE=2500
12
-SAVEHIST=2500
10
+HISTFILE=$HOME/.zsh_history
11
+HISTSIZE=5000
12
+SAVEHIST=5000
13 13
 setopt hist_ignore_dups # ignore duplication command history list
14 14
 setopt share_history # share command history data
15
-