https://github.com/significa/nvm-checker
zsh plugin that checks nvm version
https://github.com/significa/nvm-checker
nvm zsh zsh-plugin
Last synced: about 2 months ago
JSON representation
zsh plugin that checks nvm version
- Host: GitHub
- URL: https://github.com/significa/nvm-checker
- Owner: significa
- Created: 2023-03-31T15:37:21.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T10:19:52.000Z (almost 3 years ago)
- Last Synced: 2025-06-11T13:49:08.343Z (about 1 year ago)
- Topics: nvm, zsh, zsh-plugin
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nvm-checker
=============
**nvm version checker for [Zsh](https://www.zsh.org/).**
_This projects aims at providing users a visual aid to notice that their node version is not equal to the one required on the .nvmrc file_
=============
## Install
### Using [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh)
1. Clone this repository in oh-my-zsh's plugins directory:
git clone git@github.com:significa/nvm-checker.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/nvm-checker
2. Activate the plugin in `~/.zshrc`:
plugins=( [plugins...] nvm-checker)
3. Source `~/.zshrc` to take changes into account:
source ~/.zshrc
## Update
1. Remove plugin directory and clone the repository again:
rm -rf ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/nvm-checker; git clone git@github.com:significa/nvm-checker.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/nvm-checker