| { | |
| "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", | |
| "python.terminal.activateEnvironment": true, | |
| "python.terminal.activateEnvInCurrentTerminal": true, | |
| "terminal.integrated.env.osx": { | |
| "VIRTUAL_ENV": "${workspaceFolder}/.venv" | |
| }, | |
| "terminal.integrated.profiles.osx": { | |
| "zsh (venv)": { | |
| "path": "zsh", | |
| "args": ["-c", "source ${workspaceFolder}/.venv/bin/activate && exec zsh"] | |
| } | |
| }, | |
| "terminal.integrated.defaultProfile.osx": "zsh (venv)" | |
| } | |