Added support for nvm
This commit is contained in:
parent
1ab8f11ab2
commit
c466ffe44a
|
@ -11,6 +11,12 @@ if [ -d $HOME/.cargo ]; then
|
||||||
export PATH=$HOME/.cargo/bin:$PATH
|
export PATH=$HOME/.cargo/bin:$PATH
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Nvm path
|
||||||
|
if [ -d $OME/.nvm ]; then
|
||||||
|
export NVM_DIR="${XDG_CONFIG_HOME/:-$HOME/.}nvm"
|
||||||
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||||
|
fi
|
||||||
|
|
||||||
# LD_LIBRARY_PATH: I don't know why there is this line here but I'm too scared
|
# LD_LIBRARY_PATH: I don't know why there is this line here but I'm too scared
|
||||||
# to delete it
|
# to delete it
|
||||||
export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH
|
export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH
|
||||||
|
|
Loading…
Reference in New Issue