diff --git a/zsh/.zshenv b/zsh/.zshenv index 21d968e..f5cf481 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -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 +