summaryrefslogtreecommitdiff
path: root/14_Nvm.zsh
blob: 5e663369495ce75949349ffa4851c31d05db6299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
##
## Part of configuration files for Zsh 4
## by Hugues Hiegel <hugues@hiegel.fr>
##
## NO WARRANTY PROVIDED, USE AT YOUR OWN RISKS
##
## You are encouraged to use, modify, and redistribute
## these files with or without this notice.
##

# NVM stuff
NVM_ENV=~/.nvm/nvm.sh
if [ -r ${NVM_ENV} ]
then
	source ${NVM_ENV}
	_nvm_env() {
		which nvm 2>&- >&- && echo "nvm:$(nvm current)"
	}

	PS1_TASKBAR+=(_nvm_env)
fi