oh-my-bash/completions/nvm.completion.sh
2022-01-15 19:00:35 +09:00

9 lines
163 B
Bash

#! bash oh-my-bash.module
# nvm (Node Version Manager) completion
if [ "$NVM_DIR" ] && [ -r "$NVM_DIR"/bash_completion ];
then
. "$NVM_DIR"/bash_completion
fi