Skip to content

Instantly share code, notes, and snippets.

@eckon
eckon / .vimspector.json
Created September 15, 2021 12:01
vimspector config to attach a node process (server needs inspect/debug flag)
{
"configurations": {
"run": {
"adapter": "vscode-node",
"configuration": {
"name": "Attaching to a process ID",
"type": "node",
"request": "attach"
}
}
@eckon
eckon / config
Created September 15, 2021 11:57
ssh config template
AddKeysToAgent yes
Host *
ServerAliveInterval 300
ServerAliveCountMax 3
Host <name of config block>
Hostname <server name>
Port <port if not 22>
User <user if not root>