Created
May 4, 2020 04:30
-
-
Save jessechounard/7bf89435c36ccd87185e48a4de29eb0d to your computer and use it in GitHub Desktop.
VS Code Terminal Integration (Experiments)
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.shell.windows": "cmd.exe", | |
| "terminal.integrated.env.windows": { | |
| "CMDER_ROOT": "D:\\cmder" | |
| }, | |
| "terminal.integrated.shellArgs.windows": [ | |
| "/k", | |
| "%CMDER_ROOT%\\vendor\\bin\\vscode_init.cmd" | |
| ], | |
| } |
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.shell.windows": "C:\\msys64\\usr\\bin\\bash.exe", | |
| "terminal.integrated.shellArgs.windows": ["-i"], | |
| "terminal.integrated.env.windows": { "PATH" : "/mingw64/bin:/usr/local/bin:/usr/bin:/bin:/c/Windows/System32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/" }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment