Files
dotfiles/bash.d/10-paths.sh
Vasili Svirydau df34ca588a .
2021-01-29 16:00:30 -08:00

12 lines
201 B
Bash

#!/bin/bash
export PATH="./node_modules/.bin:$PATH"
if [ -e "$HOME/.cargo/bin" ]; then
export PATH="$HOME/.cargo/bin:$PATH"
fi
if [ -e "$HOME/.bin" ]; then
export PATH="$HOME/.bin:$PATH"
fi