Skip to content

Commit

Permalink
Fix default active interpreter selection in VS Code workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
iburakov committed Aug 29, 2023
1 parent 206c20e commit c0f2215
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .vscode/nitta.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
// setting $LANG to "en_US.UTF-8" or something causes problems with some programs
"terminal.integrated.detectLocale": "off",

// this must be set at workspace level a bunch of weird errors doesn't show up right away in the dev container
// or the Python extension doesn't do weird stuff like activating extensions
"python.defaultInterpreterPath": "~/.pyenv/shims/python",
// this should be already activated as pyenv's shims are in PATH
"python.terminal.activateEnvironment": false,
"python.terminal.activateEnvInCurrentTerminal": false,
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
Expand Down

0 comments on commit c0f2215

Please sign in to comment.