feat: Updates devcontainer-env to pull nvim submodule.

This commit is contained in:
2026-02-01 15:57:24 -05:00
parent 3a82ae15df
commit 5561f3ccaf

View File

@@ -9,7 +9,7 @@ set -o pipefail
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-"$HOME/.config"} XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-"$HOME/.config"}
DEV_ENV=${DEV_ENV:-""} DEV_ENV=${DEV_ENV:-""}
if [ ! -d $DEV_ENV ]; then if [ ! -d "$DEV_ENV" ]; then
echo "[ERROR]: DEV_ENV variable does not exist." echo "[ERROR]: DEV_ENV variable does not exist."
exit 1 exit 1
fi fi
@@ -68,6 +68,7 @@ for file in "${files[@]}"; do
done done
# Install neovim config # Install neovim config
git submodule update --init --remote env/.config/nvim
source env/.config/nvim/install.sh source env/.config/nvim/install.sh
# Install my scripts # Install my scripts