From 5c916d69d457101326803eb076a746060e3618cf Mon Sep 17 00:00:00 2001 From: Vikas Kushwaha Date: Thu, 21 Nov 2024 13:30:52 +0530 Subject: Moved from github --- .config/nvim/vimspector/python.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .config/nvim/vimspector/python.json (limited to '.config/nvim/vimspector') 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": [] + } + } + } +} -- cgit v1.2.3