Created
July 23, 2022 18:17
-
-
Save ibrezm1/f5509d2dabb5956e262a6af67fe716cc to your computer and use it in GitHub Desktop.
settings.json for VScode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.profiles.windows": { | |
"PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" }, | |
"GitBash": { | |
"path": "${env:windir}\\System32\\cmd.exe", | |
"args": ["/k","C:\\Tools\\cmder\\vendor\\git-for-windows\\bin\\bash.exe"] | |
}, | |
"Cmder": { | |
"path": "${env:windir}\\System32\\cmd.exe", | |
"args": ["/k", "C:\\Tools\\cmder\\vendor\\bin\\vscode_init.cmd"] | |
} | |
}, | |
// Choose Default Terminal | |
// "terminal.integrated.defaultProfile.windows": "Cmder" | |
"terminal.integrated.defaultProfile.windows": "Cmder", | |
// "terminal.integrated.defaultProfile.windows": "CommandPrompt" | |
// "terminal.integrated.defaultProfile.windows": "PowerShell", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment