From: martin f. krafft Date: Thu, 22 May 2008 18:07:36 +0000 (+0200) Subject: use per-host history files X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/fb8769fc4556cf2fdef03bbcacd913c77a7dcb6a use per-host history files --- diff --git a/.zsh/zshrc/80_history b/.zsh/zshrc/80_history index af0f93b..d32d4ea 100644 --- a/.zsh/zshrc/80_history +++ b/.zsh/zshrc/80_history @@ -9,7 +9,8 @@ # # typeset -g on this one to make warn_create_global happy -typeset -g HISTFILE=$ZVARDIR/history +typeset -g HISTFILE=$ZVARDIR/history-$HOST +[[ -e $ZVARDIR/history ]] && mv $ZVARDIR/history $HISTFILE HISTSIZE=10000 SAVEHIST=$HISTSIZE LISTMAX=1000