Fix: add missing newline at end of file in nvm.zsh and pyenv.zsh for consistency

This commit is contained in:
Frank Qing
2025-06-07 19:22:56 +08:00
parent d1537fa0a3
commit b017fb1592
2 changed files with 2 additions and 2 deletions

View File

@@ -4,4 +4,4 @@ nvm() {
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
nvm "$@"
}
}

View File

@@ -1,4 +1,4 @@
# Initialize pyenv (Python Version Manager)
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" # Add pyenv to PATH
eval "$(pyenv init - zsh)" # This loads pyenv
eval "$(pyenv init - zsh)" # This loads pyenv