Skip to content

Instantly share code, notes, and snippets.

@dashaw92
Created December 8, 2020 08:12
Show Gist options
  • Save dashaw92/b5098fa90b95fff4248cbd91d7d9890a to your computer and use it in GitHub Desktop.
Save dashaw92/b5098fa90b95fff4248cbd91d7d9890a to your computer and use it in GitHub Desktop.
VSCode settings
{
"terminal.external.windowsExec": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
"terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
"editor.fontFamily": "Cascadia Code, Consolas, 'Courier New', monospace",
"rust.wait_to_build": 10,
"rust.show_hover_context": false,
"workbench.colorTheme": "Base16 Dark Google",
"launch": {
"version": "0.2.0",
"configurations": [{
"type": "lldb",
"request": "launch",
"name": "Launch",
"args": [],
"program": "${workspaceFolder}/target/debug/${workspaceFolderBasename}",
"windows": {
"program": "${workspaceFolder}/target/debug/${workspaceFolderBasename}.exe"
},
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"sourceLanguages": ["rust"],
"sourceMap": {
"/rustc/*": "${env:HOME}/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust"
}
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment