Skip to content

Instantly share code, notes, and snippets.

@kaangiray26
Created November 4, 2025 10:36
Show Gist options
  • Select an option

  • Save kaangiray26/a01451c4f5a6a49587c113be9a5ac356 to your computer and use it in GitHub Desktop.

Select an option

Save kaangiray26/a01451c4f5a6a49587c113be9a5ac356 to your computer and use it in GitHub Desktop.
Zed Debugger Configuration for Python
// Project-local debug tasks
//
// For more documentation on how to configure debug tasks,
// see: https://zed.dev/docs/debugger
[
{
"label": "Python Debugger",
"adapter": "Debugpy",
"request": "attach",
"tcp_connection": {
"host": "127.0.0.1",
"port": 5678
},
"cwd": "$ZED_WORKTREE_ROOT",
"pathMappings": [
{
"localRoot": "${ZED_WORKTREE_ROOT}",
"remoteRoot": "."
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment