dotfiles/vim/UltiSnips/sshconfig.snippets

11 lines
267 B
Plaintext
Raw Normal View History

2023-05-21 21:58:04 +02:00
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