vscode設(shè)置2個(gè)空格的縮進(jìn)
點(diǎn)擊菜單欄中的文件--》首選項(xiàng)--》設(shè)置错维,然后搜索下圖中的關(guān)鍵字,就可以設(shè)置了
還是看圖更直接一些
設(shè)置默認(rèn)bash:
{
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git-Bash": {
"path": "D:\\Git\\Git\\bin\\bash.exe"
}
},
"terminal.integrated.defaultProfile.windows": "Git-Bash",
}