Add template ssh config file
Start adding checks for nvim packages
This commit is contained in:
parent
f706d3ce2c
commit
6ed760868a
|
@ -79,3 +79,6 @@ grep "editor" "$HOME/.gitconfig" > /dev/null || git config --global core.editor
|
|||
# do
|
||||
# create_symlink "$HOME/.local/share/fonts" "$FILE"
|
||||
# done
|
||||
|
||||
# Ensure nvim plugins
|
||||
which -a efm-langserver > /dev/null || ln -s "$(readlink -f config/nvim/external/efm-langserver)" "$HOME/.local/bin/."
|
||||
|
|
10
templates/ssh-config
Normal file
10
templates/ssh-config
Normal file
|
@ -0,0 +1,10 @@
|
|||
Host *
|
||||
User elitherl
|
||||
AddKeysToAgent yes
|
||||
IdentityFile ~/.ssh/id_ed25519
|
||||
ServerAliveInterval 15
|
||||
ServerAliveCountMax 3
|
||||
ControlMaster auto
|
||||
ControlPath ~/.ssh/sockets/%r@%h:%p
|
||||
ControlPersist 3s
|
||||
ForwardX11Timeout 0
|
Loading…
Reference in a new issue