]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: Increase history size.
authorSimon Ruderich <simon@ruderich.org>
Thu, 13 Aug 2009 17:22:42 +0000 (19:22 +0200)
committerSimon Ruderich <simon@ruderich.org>
Thu, 13 Aug 2009 17:22:42 +0000 (19:22 +0200)
This makes sure I don't loose any commands I might need later again.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 2fe5530f4ca2e6f188a418cfb0b40c13a0bfbc71..09ad147020becfb21c9e7550725c3cbc1570830f 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -78,8 +78,8 @@ autoload -Uz add-zsh-hook
 # HISTORY SETTINGS
 
 # Use history and store it in ~/.zsh/history.
-HISTSIZE=5000
-SAVEHIST=5000
+HISTSIZE=50000
+SAVEHIST=50000
 HISTFILE=~/.zsh/history
 # Append to the history file instead of overwriting it and do it immediately
 # when a command is executed.