Skip to content

Commit

Permalink
Setup zsh in devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed May 24, 2024
1 parent c72f0b0 commit 2a1d82b
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/go
{
"name": "GoFlow",
"image": "mcr.microsoft.com/devcontainers/go:1-1.22-bullseye",
"image": "golang:1.22-bullseye",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installOhMyZsh": false,
"installOhMyZshConfig": false,
"configureZshAsDefaultShell": true,
"upgradePackages": "true"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "latest",
"ppa": "false"
},
"ghcr.io/devcontainers-contrib/features/pandoc:1": {
"version": "latest"
}
},
"runArgs": [
"--name",
"dev-goflow"
"--name=dev-goflow"
],
"customizations": {
"vscode": {
Expand All @@ -19,11 +26,12 @@
"lfs.vscode-emacs-friendly"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnSave": true,
"editor.rulers": [
120
]
}
}
}
}
}

0 comments on commit 2a1d82b

Please sign in to comment.