From 5561f3ccaf4ed503bdb0e6ef7eb2f33cd3e45841 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 1 Feb 2026 15:57:24 -0500 Subject: [PATCH] feat: Updates devcontainer-env to pull nvim submodule. --- devcontainer-env | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devcontainer-env b/devcontainer-env index 67a8df5..35b9b4f 100755 --- a/devcontainer-env +++ b/devcontainer-env @@ -9,7 +9,7 @@ set -o pipefail XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-"$HOME/.config"} DEV_ENV=${DEV_ENV:-""} -if [ ! -d $DEV_ENV ]; then +if [ ! -d "$DEV_ENV" ]; then echo "[ERROR]: DEV_ENV variable does not exist." exit 1 fi @@ -68,6 +68,7 @@ for file in "${files[@]}"; do done # Install neovim config +git submodule update --init --remote env/.config/nvim source env/.config/nvim/install.sh # Install my scripts