Skip to content

Commit

Permalink
chore: install useful/relevant extensions in devcontainer (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasPammer authored Apr 28, 2023
1 parent 5343dfc commit 5510b3e
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions {{ cookiecutter.project_slug }}/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,38 @@
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "bash ./.devcontainer/postCreateCommand.sh"
"postCreateCommand": "bash ./.devcontainer/postCreateCommand.sh",
// Configure tool-specific properties.
// "customizations": {},
"customizations": {
"vscode": {
"extensions": [
// ## General / GUI ##
"eamodio.gitlens",
"donjayamanne.githistory",
"mhutchie.git-graph",
"GitHub.vscode-pull-request-github",
"GitHub.vscode-github-actions",
"GitHub.github-vscode-theme",
"vscode-icons-team.vscode-icons",
"bierner.markdown-preview-github-styles",
"mutantdino.resourcemonitor",
"aaron-bond.better-comments",
"Gruntfuggly.todo-tree",
"muuvmuuv.vscode-sundial",
"WakaTime.vscode-wakatime",
"asciidoctor.asciidoctor-vscode",
"christian-kohler.path-intellisense",
"EditorConfig.EditorConfig",

// ## Ansible Development ##
"donjayamanne.python-extension-pack",
"redhat.ansible",
"redhat.vscode-yaml",
"samuelcolvin.jinjahtml",
"ms-azuretools.vscode-docker"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}

0 comments on commit 5510b3e

Please sign in to comment.