Skip to content

Commit 5510b3e

Browse files
authored
chore: install useful/relevant extensions in devcontainer (#96)
1 parent 5343dfc commit 5510b3e

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

{{ cookiecutter.project_slug }}/.devcontainer/devcontainer.json

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,38 @@
2121
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2222
// "forwardPorts": [],
2323
// Use 'postCreateCommand' to run commands after the container is created.
24-
"postCreateCommand": "bash ./.devcontainer/postCreateCommand.sh"
24+
"postCreateCommand": "bash ./.devcontainer/postCreateCommand.sh",
2525
// Configure tool-specific properties.
26-
// "customizations": {},
26+
"customizations": {
27+
"vscode": {
28+
"extensions": [
29+
// ## General / GUI ##
30+
"eamodio.gitlens",
31+
"donjayamanne.githistory",
32+
"mhutchie.git-graph",
33+
"GitHub.vscode-pull-request-github",
34+
"GitHub.vscode-github-actions",
35+
"GitHub.github-vscode-theme",
36+
"vscode-icons-team.vscode-icons",
37+
"bierner.markdown-preview-github-styles",
38+
"mutantdino.resourcemonitor",
39+
"aaron-bond.better-comments",
40+
"Gruntfuggly.todo-tree",
41+
"muuvmuuv.vscode-sundial",
42+
"WakaTime.vscode-wakatime",
43+
"asciidoctor.asciidoctor-vscode",
44+
"christian-kohler.path-intellisense",
45+
"EditorConfig.EditorConfig",
46+
47+
// ## Ansible Development ##
48+
"donjayamanne.python-extension-pack",
49+
"redhat.ansible",
50+
"redhat.vscode-yaml",
51+
"samuelcolvin.jinjahtml",
52+
"ms-azuretools.vscode-docker"
53+
]
54+
}
55+
}
2756
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
2857
// "remoteUser": "root"
2958
}

0 commit comments

Comments
 (0)