Skip to content

Commit

Permalink
Merge pull request #4 from ibis-hdl/better-pwsh-integration
Browse files Browse the repository at this point in the history
Better Powershell7 integration on Windows
  • Loading branch information
ibis-hdl authored Nov 24, 2024
2 parents 36be107 + bbe7d1f commit e4a1b1c
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 e4a1b1c

Please sign in to comment.