Skip to content

Commit

Permalink
setenv
Browse files Browse the repository at this point in the history
  • Loading branch information
uesugi6111 committed Jun 9, 2021
1 parent dadbcf6 commit a638a79
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "Rust-dev-env",
"image": "uesugi6111/rust-dev-env:latest",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/zsh",
"lldb.executable": "/usr/bin/lldb",
"rust-client.engine": "rust-analyzer",
"files.watcherExclude": {
"**/target/**": true
},
"search.exclude": {
"**/target": true
},
"workbench.colorTheme": "Solarized Dark",
"editor.fontFamily": "'MyricaM M','MyricaM',Consolas, 'Courier New', monospace",
"editor.suggestSelection": "first",
"editor.renderWhitespace": "all",
"editor.detectIndentation": false,
"workbench.iconTheme": "vscode-icons",
"[rust]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "matklad.rust-analyzer",
"editor.tabSize": 4
},
"editor.formatOnSave": true,
"editor.renderControlCharacters": true,
"rust-analyzer.updates.askBeforeDownload": false,
"rust-analyzer.updates.channel": "stable",
"rust-analyzer.trace.server": "verbose",
"rust-analyzer.checkOnSave.command": "clippy",
"lldb.libpython": ""
},
"extensions": [
//"rust-lang.rust",
"bungcip.better-toml",
"vadimcn.vscode-lldb",
"mutantdino.resourcemonitor",
"matklad.rust-analyzer"
],
}

0 comments on commit a638a79

Please sign in to comment.