Merge pull request #8 from MOrlassino/patch-1

Update devcontainer.json
This commit is contained in:
Chuck Lantz
2020-07-01 06:48:44 -07:00
committed by GitHub

View File

@@ -6,14 +6,20 @@
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"lldb.executable": "/usr/bin/lldb"
"lldb.executable": "/usr/bin/lldb",
// VS Code don't watch files under ./target
"files.watcherExclude": {
"**/target/**": true
}
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"rust-lang.rust",
"bungcip.better-toml",
"vadimcn.vscode-lldb"
"vadimcn.vscode-lldb",
// (Optional) Displays the current CPU stats, memory/disk consumption, clock freq. etc. of the container host in the VS Code status bar.
"mutantdino.resourcemonitor"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
@@ -24,4 +30,4 @@
// Comment out to run as root instead
"remoteUser": "vscode"
}
}