Merge pull request #795 from MunifTanjim/nvm_completion

add completion for nvm
pull/800/head
Nils Winkler 2016-10-10 09:35:49 +02:00 committed by GitHub
commit 3a7ca290da
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
# nvm (Node Version Manager) completion
if [ "$NVM_DIR" ] && [ -r "$NVM_DIR"/bash_completion ];
then
. "$NVM_DIR"/bash_completion
fi