mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 10:26:42 +00:00
14 lines
235 B
Bash
14 lines
235 B
Bash
#
|
|
# Node.js
|
|
#
|
|
|
|
# Load nvm if it's available
|
|
if [ -f "$HOME/.nvm/nvm.sh" ]; then
|
|
source "$HOME/.nvm/nvm.sh"
|
|
|
|
# And it's shell completion
|
|
if [ -f "$HOME/.nvm/bash_completion" ]; then
|
|
source "$HOME/.nvm/bash_completion"
|
|
fi
|
|
fi
|