zsh: add ~/.local/bin to the PATH

This commit is contained in:
usagi-flow 2024-05-14 23:07:48 +02:00
parent e008aac1e8
commit e79683b3fa
No known key found for this signature in database

View file

@ -103,3 +103,6 @@ alias_file="${XDG_CONFIG_HOME:-$HOME/.config}/alias"
if [ -r "$alias_file" ]; then
source "$alias_file"
fi
# PATH extensions
export PATH="$HOME/.local/bin:$PATH"