Add path .local/bin in the PATH variable

This commit is contained in:
Fabio Scotto di Santolo
2025-07-08 15:30:06 +02:00
parent 8e57686f73
commit ece47e870c

View File

@@ -10,3 +10,9 @@ if command -v starship > /dev/null 2>&1; then
eval "$(starship init zsh)"
fi
# Aggiungi ~/.local/bin a PATH se non c'è già
case ":$PATH:" in
*":$HOME/.local/bin:"*) ;;
*) export PATH="$HOME/.local/bin:$PATH" ;;
esac