Last active
March 18, 2025 14:14
-
-
Save atomtigerzoo/d2524a5d1b60fb072c1991e4337461c1 to your computer and use it in GitHub Desktop.
zsh-oh-my-zsh_show-notice-on-directory-change
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [...your .zshrc file] | |
# Append this to your .zshrc (you need to have zsh/oh my zsh installed 🙃) | |
# Watch folder changes | |
function chpwd { | |
if [[ -e .nvmrc ]]; then | |
# If above file is found inside folder, display the following | |
echo | |
echo ✨ nvmrc dotfile found | |
echo ✨ Please execute \`nvm use\` to use\/install the correct node version! | |
echo | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment