From 33e9e6574e93464e23ba70db7c591bb760021b83 Mon Sep 17 00:00:00 2001 From: Adam Lamers Date: Sat, 28 Sep 2024 18:27:52 -0400 Subject: [PATCH] small fixes --- common_shell_functions | 6 +++++- install.conf.yaml | 1 - 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/common_shell_functions b/common_shell_functions index 6501feb..23f148e 100644 --- a/common_shell_functions +++ b/common_shell_functions @@ -121,7 +121,11 @@ function install_nvm() { else echo "nvm is already installed" fi - nvm install --lts + + if [ -f "$HOME/.nvm/nvm.sh" ]; then + . "$HOME/nvm/nvm.sh" + nvm install --lts + fi } function install_rust() { diff --git a/install.conf.yaml b/install.conf.yaml index 4d93e8e..5fc768f 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -19,7 +19,6 @@ ~/.dictionary.txt.gz: dictionary.txt.gz ~/.common_shell_functions: common_shell_functions ~/.zsh: zsh - ~/.config/nvim: nvim - shell: - [git submodule update --init --recursive, Installing submodules]