diff options
Diffstat (limited to '.config/nvim/vimspector/python.json')
-rw-r--r-- | .config/nvim/vimspector/python.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.config/nvim/vimspector/python.json b/.config/nvim/vimspector/python.json new file mode 100644 index 0000000..7fff9ab --- /dev/null +++ b/.config/nvim/vimspector/python.json @@ -0,0 +1,31 @@ +{ + "configurations": { + "Python: Launch": { + "adapter": "debugpy", + "filetypes": [ "python" ], + "configuration": { + "name": "python: Launch", + "type": "python", + "request": "launch", + "python": "$HOME/Others/virtualenvs/main/bin/python", + "program": "$file", + "stopOnEntry": true, + "debugOptions": [] + } + }, + "Python: Launch interactive": { + "adapter": "debugpy", + "filetypes": [ "python" ], + "configuration": { + "name": "python: Launch", + "type": "python", + "request": "launch", + "python": "$HOME/Others/virtualenvs/main/bin/python", + "program": "$file", + "console": "externalTerminal", + "stopOnEntry": true, + "debugOptions": [] + } + } + } +} |