Aggiunta snippets per ssh.

This commit is contained in:
Emiliano Vavassori 2023-05-21 21:58:04 +02:00
parent 15428a88f7
commit 1f873a77ca
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
zsh/distro.base.zsh
vim/autoload/plug.vim
vim/plugged
vim/pack
vim/bundle
vim/spell

View File

@ -0,0 +1,10 @@
snippet stanza "Stanza di configurazione SSH per BgWorld"
Host ${1:name}
HostName ${2:hostname}
Port 4321
User bgworld
IdentityFile ~/.ssh/bgworld/id_rsa
ProxyCommand ssh -W %h:%p ${3:proxy}
$0#LocalForward 59090 127.0.0.1:9090
endsnippet