docs/troubleshooting/terminal-quick-fixes.mdx
The simplest fix for most terminal issues is switching to Background Execution Mode:
This runs commands in a background process instead of VSCode's terminal, bypassing most integration issues.
If you need VSCode's integrated terminal, try these:
Switch to bash (solves most instances)
Increase timeout
Disable terminal reuse
# Create minimal config for VSCode
echo 'export TERM=xterm-256color' > ~/.zshrc-vscode
echo 'export PAGER=cat' >> ~/.zshrc-vscode
# Run as Administrator
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
code .