From 7923105bef038f1043afc971ff46d0d9b64c6743 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 12 Jun 2014 10:41:12 +0200 Subject: zshrc: disable extended history to save space; fix ssh-copy-id with multiplexer Signed-off-by: Florian Pritz --- .zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index 1b11855..b51d978 100644 --- a/.zshrc +++ b/.zshrc @@ -387,8 +387,8 @@ setopt no_clobber setopt inc_append_history setopt no_bg_nice setopt share_history -setopt bang_hist -setopt extended_history +#setopt bang_hist +setopt no_extended_history #setopt hist_reduce_blanks setopt hist_ignore_space setopt hist_find_no_dups @@ -473,6 +473,7 @@ alias nossh='ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' alias noscp='scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' alias sshpw="ssh -S none -o PubkeyAuthentication=no" alias nosshpw="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -S none -o PubkeyAuthentication=no" +alias ssh-copy-id="ssh-copy-id -o ControlPath=none" alias callgrind='valgrind --tool=callgrind' alias vgfull='valgrind --leak-check=full --show-reachable=yes' -- cgit v1.2.3-24-g4f1b