diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..4f779bb --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "tomacheese/splashscreen-changer", + "image": "mcr.microsoft.com/devcontainers/go:1-1.23-bookworm", + "customizations": { + "vscode": { + "extensions": ["ms-vscode.go"] + }, + "settings": { + "go.useLanguageServer": true + } + }, + "postCreateCommand": "go mod download" +}