From 9e180acee1810f89b1145e5a1160b5d8a4ed5297 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Tue, 4 Oct 2016 01:04:50 +1100 Subject: [PATCH] Enable shared history and a few other options I like --- .zsh/interactive/history | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.zsh/interactive/history b/.zsh/interactive/history index 696f55a..b618f17 100644 --- a/.zsh/interactive/history +++ b/.zsh/interactive/history @@ -1,4 +1,9 @@ #! zsh -export HISTFILE=~/.zsh/zhistory -export HISTSIZE=50000 -export SAVEHIST=$HISTSIZE +HISTFILE=~/.zsh/zhistory +HISTSIZE=50000 +SAVEHIST=$HISTSIZE + +setopt extended_history +setopt hist_ignore_all_dups hist_ignore_space +setopt hist_verify +setopt share_history