diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-06-12 10:41:12 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2014-06-12 10:41:12 +0200 |
commit | 7923105bef038f1043afc971ff46d0d9b64c6743 (patch) | |
tree | a12242eb5a70fd03ca6d84e66bbc08fc2b70e7f7 | |
parent | 2e1f8358bdc869db26de5fb3735b55f13e9e16ed (diff) | |
download | dotfiles-7923105bef038f1043afc971ff46d0d9b64c6743.tar.gz dotfiles-7923105bef038f1043afc971ff46d0d9b64c6743.tar.xz |
zshrc: disable extended history to save space; fix ssh-copy-id with multiplexer
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .zshrc | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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' |