diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-07-05 23:33:39 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-07-05 23:33:39 +0200 |
commit | 6b6dcefa2041dc6e9099b9c73a6a73b325bd13a9 (patch) | |
tree | 044a9008250d499a17f2e8276a1b192efc84646a | |
parent | 45f46cb20f581c471ddc3ad94b3021a985765704 (diff) | |
download | dotfiles-6b6dcefa2041dc6e9099b9c73a6a73b325bd13a9.tar.gz dotfiles-6b6dcefa2041dc6e9099b9c73a6a73b325bd13a9.tar.xz |
zshrc: make history bigger and add 2 options
Signed-off-by: Florian Pritz <bluewind@xssn.at>
-rw-r--r-- | .zshrc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -451,9 +451,8 @@ regcheck() { # }}} # History {{{ export HISTFILE=~/.zsh/histfile -# for some odd reason allocating RAM to save the histfile takes ages.. export HISTSIZE=100000 -export SAVEHIST=65536 +export SAVEHIST=100000 readonly HISTFILE # }}} # Other ZSH options {{{ @@ -491,7 +490,9 @@ setopt print_exit_value setopt no_clobber setopt inc_append_history +setopt no_bg_nice setopt share_history +setopt bang_hist setopt extended_history setopt hist_reduce_blanks setopt hist_ignore_space |