From bc672415bffdcd59efb0753da40d25685222c288 Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Wed, 15 Apr 2020 23:38:35 +0200 Subject: [PATCH] ssh/config: there is an Include directive since openssh 7.8 --- .install.conf.yaml | 1 - ssh/config | 11 +++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 ssh/config diff --git a/.install.conf.yaml b/.install.conf.yaml index e34a1a1..353dbbb 100644 --- a/.install.conf.yaml +++ b/.install.conf.yaml @@ -10,7 +10,6 @@ ~/.bash_profile: bash/profile ~/.gitconfig: git/gitconfig ~/.gitignore_global: git/gitignore_global - ~/.config/geany/geany.conf: geany/geany.conf ~/.config/geany/keybindings.conf: geany/keybindings.conf ~/.config/geany/filedefs: geany/filedefs ~/.ncmpcpp/config: ncmpcpp/config diff --git a/ssh/config b/ssh/config new file mode 100644 index 0000000..6f275c2 --- /dev/null +++ b/ssh/config @@ -0,0 +1,11 @@ +# Include separate configs from ~/.ssh/config.d/ +Include ~/.ssh/config.d/* + +# Github +Host github.com +User git + +# Defaults +Host * +IdentitiesOnly yes +IdentityFile ~/.ssh/%h