Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ipang-dwi/b0bd01273b3b5370692cce07faaa9baa to your computer and use it in GitHub Desktop.
Save ipang-dwi/b0bd01273b3b5370692cce07faaa9baa to your computer and use it in GitHub Desktop.
Laragon CMDer terminal integration setting for VSCode
{
"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": {
"source": "Git Bash"
},
"laragon": {
"path": "C:\\laragon\\bin\\cmder\\cmder.bat",
"args": [
"."
]
}
},
"terminal.integrated.defaultProfile.windows": "laragon"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment