Skip to content

Instantly share code, notes, and snippets.

@renanabraham
Forked from rachids/settings.json
Created February 3, 2022 14:32
Show Gist options
  • Save renanabraham/3f02d074d2232adfdc246f7e25e67284 to your computer and use it in GitHub Desktop.
Save renanabraham/3f02d074d2232adfdc246f7e25e67284 to your computer and use it in GitHub Desktop.
Integrate Laragon's terminal (CMDer) to Visual Studio Code
{
"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