From b017fb1592a9223a91223a16ed5ca677fd72b79f Mon Sep 17 00:00:00 2001 From: Frank Qing Date: Sat, 7 Jun 2025 19:22:56 +0800 Subject: [PATCH] Fix: add missing newline at end of file in nvm.zsh and pyenv.zsh for consistency --- zshrc/nvm.zsh | 2 +- zshrc/pyenv.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zshrc/nvm.zsh b/zshrc/nvm.zsh index da81fd3..ba4cf37 100644 --- a/zshrc/nvm.zsh +++ b/zshrc/nvm.zsh @@ -4,4 +4,4 @@ nvm() { [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" nvm "$@" -} \ No newline at end of file +} diff --git a/zshrc/pyenv.zsh b/zshrc/pyenv.zsh index df5c984..3acaabb 100644 --- a/zshrc/pyenv.zsh +++ b/zshrc/pyenv.zsh @@ -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 \ No newline at end of file +eval "$(pyenv init - zsh)" # This loads pyenv