Render96ex/.vscode/settings.json

42 lines
924 B
JSON
Raw Normal View History

{
"files.associations": {
"sm64.h": "c",
"gfx_dimensions.h": "c",
"gbi.h": "c",
"options_menu.h": "c",
"*.in": "cpp",
"chrono": "cpp",
"functional": "cpp"
},
// https://stackoverflow.com/questions/45836650/how-do-i-integrate-msys2-shell-into-visual-studio-code-on-window
"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"
},
"MSYS2": {
"path": "C:\\msys64\\usr\\bin\\bash.exe",
"args": [
"--login",
"-i"
],
"env": {
"MSYSTEM": "MINGW64",
"CHERE_INVOKING": "1"
}
}
},
}