Files
rust-codespace/.devcontainer/.devcontainer.json
2023-12-15 14:59:52 +01:00

28 lines
581 B
JSON

{
"name": "Rust",
"features": {
"ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {}
},
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"GitHub.copilot-chat",
"tamasfe.even-better-toml",
"GitHub.copilot-labs",
"GitHub.copilot",
"yzhang.markdown-all-in-one",
"alexcvzz.vscode-sqlite"
]
}
},
"dockerFile": "Dockerfile",
"settings": {
"editor.formatOnSave": true,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"files.exclude": {
"**/CODE_OF_CONDUCT.md": true,
"**/LICENSE": true
}
}
}