Skip to content

Commit

Permalink
Better Powershell7 integration on Windows
Browse files Browse the repository at this point in the history
- start `Microsoft.VSCode_profile.ps1` on terminal
  • Loading branch information
ibis-hdl committed Nov 24, 2024
1 parent 3acae24 commit bbe7d1f
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,24 @@
"statusBarVisibility": "compact"
}
},
"cmake.allowCommentsInPresetsFile": false
"cmake.allowCommentsInPresetsFile": false,
// https://stackoverflow.com/questions/72322120/vscode-import-x-could-not-be-resolved-even-though-listed-under-helpmodules
"python.analysis.extraPaths": [
"~/.local/share/pipx/venvs/conan/lib/python3.12/site-packages/", // pipx
"${workspaceFolder}/.venv/lib/*/site-packages/",
"${workspaceFolder}/.win64-venv/"
],
"terminal.integrated.shellIntegration.enabled": true,
// https://code.visualstudio.com/docs/terminal/profiles
"terminal.integrated.profiles.windows": {
"PowerShell (MSVC)": {
"path": "pwsh.exe",
"args": [
"-noexit",
"-file",
"${env:USERPROFILE}\\Documents\\PowerShell\\Microsoft.VSCode_profile.ps1"
]
}
},
"terminal.integrated.defaultProfile.windows": "PowerShell (MSVC)"
}

0 comments on commit bbe7d1f

Please sign in to comment.