1. {
    2. "terminal.integrated.profiles.windows": {
    3. "PowerShell": {
    4. "source": "PowerShell",
    5. "icon": "terminal-powershell"
    6. },
    7. "Command Prompt": {
    8. "path": [
    9. "${env:windir}\\Sysnative\\cmd.exe",
    10. "${env:windir}\\System32\\cmd.exe"
    11. ],
    12. "args": [],
    13. "icon": "terminal-cmd"
    14. },
    15. // add a profile
    16. "GitBash": {
    17. "path": "C:\\app\\Git\\bin\\bash.exe",
    18. "args": ["--login"],
    19. "icon": "terminal-bash"
    20. }
    21. },
    22. // set default terminal
    23. "terminal.integrated.defaultProfile.windows": "GitBash"
    24. }