mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-12-22 01:03:35 +01:00
ssh/config: there is an Include directive since openssh 7.8
This commit is contained in:
parent
bcb0d50889
commit
bc672415bf
2 changed files with 11 additions and 1 deletions
|
@ -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
|
||||
|
|
11
ssh/config
Normal file
11
ssh/config
Normal file
|
@ -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
|
Loading…
Reference in a new issue