1
ewpratten.com/.devcontainer/devcontainer.json

29 lines
830 B
JSON

{
"name": "Jekyll web development",
"image": "mcr.microsoft.com/vscode/devcontainers/ruby:2.7",
// Set any default VSCode settings here
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"forwardPorts": [
4000
],
// Any extensions you want can go here
"extensions": [
"rebornix.Ruby",
"yzhang.markdown-all-in-one",
"fcrespo82.markdown-table-formatter",
"sissel.shopify-liquid",
"wscats.qf",
"aessoft.aessoft-class-autocomplete",
"zignd.html-css-class-completion",
"ecmel.vscode-html-css",
"jeffersonqin.latex-snippets-jeff",
"goessner.mdmath",
"sibiraj-s.vscode-scss-formatter",
"streetsidesoftware.code-spell-checker",
"osteele.jekyll",
"GitHub.vscode-pull-request-github"
],
// "postCreateCommand": "bundle install",
}