Skip to content

Instantly share code, notes, and snippets.

@rachids
Last active May 23, 2024 10:28
Show Gist options
  • Save rachids/062dfc8200d19a04131fea5c0d4e93fa to your computer and use it in GitHub Desktop.
Save rachids/062dfc8200d19a04131fea5c0d4e93fa 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"
}
@rcreativepoutine
Copy link

You are an Angel! thanks!

@efronpaduansi
Copy link

Thank a lot

@AlbertComas83
Copy link

Thanks!

@JesusSGD
Copy link

If you don't have a cmder.bat you can replace the "laragon" part with this instead:

"laragon": {
      "path": "${env:windir}\\System32\\cmd.exe",
      "args": ["/k", "C:\\laragon\\bin\\cmder\\vendor\\bin\\vscode_init.cmd"]
}

Genial

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment