Skip to content

Commit

Permalink
fix(templates): update devcontainer refs in templates!
Browse files Browse the repository at this point in the history
Signed-off-by: John Muchovej <jmuchovej@users.noreply.github.com>
  • Loading branch information
jmuchovej committed Aug 27, 2024
1 parent 667b0bf commit 90e01c1
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion templates/src/latex/.devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "ghcr.io/jmuchovej/latex-devcontainer:${templateOption:texlive}",
"image": "ghcr.io/jmuchovej/devcontainers/latex:${templateOption:texlive}",
"name": "LaTeX",
// "workspaceFolder": "/workspace",
"customizations": {
Expand Down
64 changes: 32 additions & 32 deletions templates/src/typst/.devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
{
"image": "ghcr.io/jmuchovej/latex-devcontainer:${templateOption:typst}",
"name": "Typst",
// "workspaceFolder": "/workspace",
"customizations": {
"vscode": {
"extensions": [
// Typst LSP and renderer.
"myriad-dreamin.tinymist",
// Useful extensions for dev experience
"shardulm94.trailing-spaces", // Highlights straight whitespace
"stkb.rewrap" // Enables word-wrap on comments
],
"settings": {
"files.eol": "\n",
"editor.formatOnSave": true,
"[typst]": {
"editor.formatOnSave": true
},
"tinymist.formatterMode": "typstyle",
"files.associations": {
"*.typ": "typst"
},
}
"image": "ghcr.io/jmuchovej/devcontainers/typst:${templateOption:typst}",
"name": "Typst",
// "workspaceFolder": "/workspace",
"customizations": {
"vscode": {
"extensions": [
// Typst LSP and renderer.
"myriad-dreamin.tinymist",
// Useful extensions for dev experience
"shardulm94.trailing-spaces", // Highlights straight whitespace
"stkb.rewrap" // Enables word-wrap on comments
],
"settings": {
"files.eol": "\n",
"editor.formatOnSave": true,
"[typst]": {
"editor.formatOnSave": true
},
"tinymist.formatterMode": "typstyle",
"files.associations": {
"*.typ": "typst"
},
}
},
"features": {
"ghcr.io/devcontainers/features/common-utils": {
"installZsh": true,
"username": "vscode",
"upgradePackages": true
}
},
}
}
},
"features": {
"ghcr.io/devcontainers/features/common-utils": {
"installZsh": true,
"username": "vscode",
"upgradePackages": true
}
},
}
2 changes: 1 addition & 1 deletion templates/src/typst/devcontainer-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"texlive": {
"type": "string",
"description": "Which version of Typst?",
"enum": ["0.10.0", "0.11.0", "0.11.1", "latest"],
"enum": ["0.11.0", "0.11.1", "latest"],
"default": "latest"
}
}
Expand Down

0 comments on commit 90e01c1

Please sign in to comment.