From 5c2776f3c96a13c99cd74c6f9c01c58492f4ee81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Tue, 17 Oct 2017 22:16:07 +0200 Subject: [PATCH] Some fixes to ssh settings --- network/ssh/config | 1 + terminal/fish/functions/ssh.fish | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 terminal/fish/functions/ssh.fish diff --git a/network/ssh/config b/network/ssh/config index 6710b9e..b9af262 100644 --- a/network/ssh/config +++ b/network/ssh/config @@ -2,3 +2,4 @@ Host * UseKeychain yes AddKeysToAgent yes IdentityFile ~/.ssh/thomas_rsa + VisualHostKey yes diff --git a/terminal/fish/functions/ssh.fish b/terminal/fish/functions/ssh.fish new file mode 100644 index 0000000..6ce78d1 --- /dev/null +++ b/terminal/fish/functions/ssh.fish @@ -0,0 +1,3 @@ +function ssh + /usr/bin/env TERM=xterm-256color ssh $argv +end