解决集成终端无法使用主机命令和字体的问题
Shift + Ctrl + P:搜索user set
,点击带JSON
的,把这些加进去
~/.var/app/com.visualstudio.code/config/Code/User/settings.json
{
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/app/bin/host-spawn",
"args": ["bash"],
"icon": "terminal-bash",
"overrideName": true
}
},
"editor.fontFamily": "Courier New",
}