summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-06-12 10:41:12 +0200
committerFlorian Pritz <bluewind@xinu.at>2014-06-12 10:41:12 +0200
commit7923105bef038f1043afc971ff46d0d9b64c6743 (patch)
treea12242eb5a70fd03ca6d84e66bbc08fc2b70e7f7 /.zshrc
parent2e1f8358bdc869db26de5fb3735b55f13e9e16ed (diff)
downloaddotfiles-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>
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc5
1 files 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'