1
0
mirror of https://github.com/vbrandl/dotfiles synced 2024-11-22 16:03:50 +01:00

Add node and cargo to shell profile

This commit is contained in:
Valentin Brandl 2018-08-13 11:43:57 +02:00
parent 780401817c
commit d85eed51e4
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -6,3 +6,7 @@ if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then
export QT_QPA_PLATFORMTHEME='gtk2'
fi
# vim: set filetype=zsh ts=4 sw=4 tw=120 et :
export PATH="$HOME/.cargo/bin:$PATH"
PATH="$HOME/.node/bin:$PATH"
NODE_PATH="$HOME/.node/lib/node_modules:$NODE_PATH"