Skip to content

Instantly share code, notes, and snippets.

@NickCrew
Created January 20, 2022 19:16
Show Gist options
  • Save NickCrew/fdecfb3afe360399289c0b99092efa10 to your computer and use it in GitHub Desktop.
Save NickCrew/fdecfb3afe360399289c0b99092efa10 to your computer and use it in GitHub Desktop.
Vimspector Generic Python
{
"configurations": {
"python-debug": {
"default": true,
"adapter": "debugpy",
"filetypes": [ "python" ],
"breakpoints": {
"exception": {
"all": "N",
"uncaught": "Y"
}
},
"configuration": {
"type": "python",
"request": "launch",
"stopOnEntry": true,
"python": "python",
"program": "${file}"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment