-
-
Save renanabraham/3f02d074d2232adfdc246f7e25e67284 to your computer and use it in GitHub Desktop.
Integrate Laragon's terminal (CMDer) to Visual Studio Code
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" | |
}, | |
"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