From 81757f95a676f467726dfd41ab21b24cbc8b94f7 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Sat, 6 Apr 2024 11:05:45 +0000 Subject: [PATCH] chore: update devcontainer.json for git completion install at container creation --- .devcontainer/devcontainer.json | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2a812706..87c825f1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,16 +2,8 @@ "name": "Node.js & TypeScript", "image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye", "features": { - "ghcr.io/devcontainers-contrib/features/typescript:2": {} + "ghcr.io/devcontainers-contrib/features/bash-command:1": {}, + "ghcr.io/guiyomh/features/vim:0": {} }, - "customizations": { - "vscode": { - "extensions": [ - "blipn.terminal-icon", - "eamodio.gitlens", - "redhat.vscode-xml", - "redhat.vscode-yaml" - ] - } - } + "postCreateCommand": "wget --no-check-certificate --content-disposition https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -O ~/git-completion.bash; echo \". ~/git-completion.bash\" >> ~/.bashrc" } \ No newline at end of file