From 6e85423bdf2ea562476c607abf029fee271033eb Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Sun, 10 May 2026 03:01:47 -0400 Subject: [PATCH] call install_nvchad.sh from main to keep nvim config in sync --- setup_env.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup_env.sh b/setup_env.sh index 4e70fbe..5976d3c 100755 --- a/setup_env.sh +++ b/setup_env.sh @@ -157,6 +157,9 @@ main() { install_git_bash_prompt deploy_configs deploy_bin + if [ -f "$(pwd)/install_nvchad.sh" ]; then + bash "$(pwd)/install_nvchad.sh" + fi deploy_nvim echo "Setup complete! Please restart your shell or run 'source ~/.bashrc' for changes to take effect." }