diff options
author | katherine <shmibs@shmibbles.me> | 2018-09-27 22:19:35 -0700 |
---|---|---|
committer | katherine <shmibs@shmibbles.me> | 2018-09-27 22:19:35 -0700 |
commit | 4befb6e999ac89bf1c722228f55a3f7ecfaf1f0c (patch) | |
tree | 95fbd3b19f728779f0b77dfb6df0e90ea7335786 /.zshrc-linux-desktop | |
parent | 85f251bf674dfd93f5f47f0654755f58327c1697 (diff) | |
download | dotfiles-4befb6e999ac89bf1c722228f55a3f7ecfaf1f0c.tar.gz |
clean ssh-socks
with no config it bypasses ssh multiplexing, which was causing some
problematic conflicting-ness
Diffstat (limited to '.zshrc-linux-desktop')
-rw-r--r-- | .zshrc-linux-desktop | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zshrc-linux-desktop b/.zshrc-linux-desktop index f1808ac..6acd533 100644 --- a/.zshrc-linux-desktop +++ b/.zshrc-linux-desktop @@ -1,6 +1,6 @@ ################### ALIASES ################## -alias ssh-socks='ssh -C2qTnN -D 9853 shmibbles.me' +alias ssh-socks='ssh -C2qTnN -F /dev/null -D 9853 shmibbles.me' if [[ "$(whence sshfs)" != "" ]] then alias smounth='mkdir -p ~/shmibbles.me; sshfs shmibbles.me: ~/shmibbles.me' |