1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-13 22:28:25 +08:00

[#12730] Support devcontainer and codespace specs

This commit is contained in:
Vatsal Gupta 2024-10-06 10:10:21 +00:00
parent 62cf1201b0
commit c7b3615f5e

View File

@ -0,0 +1,22 @@
{
"image": "mcr.microsoft.com/devcontainers/base:noble",
"customizations": {
"vscode": {
"extensions": [
"streetsidesoftware.code-spell-checker",
"usernamehw.errorlens",
"mads-hartmann.bash-ide-vscode"
],
"settings": {
"[shellscript]": {
"editor.defaultFormatter": "mads-hartmann.bash-ide-vscode",
"editor.tabSize": 4,
"files.eol": "\n"
},
"editor.trimAutoWhitespace": true,
"files.autoSave": "afterDelay",
"files.eol": "auto"
}
}
}
}