3 Commits

2 changed files with 4 additions and 2 deletions

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
@@ -56,6 +56,7 @@ dirs=(
files=( files=(
env/.markdownlint.jsonc env/.markdownlint.jsonc
env/.prettierrc env/.prettierrc
env/.tmux.conf
env/.zshenv env/.zshenv
) )
@@ -68,6 +69,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