ohmyzsh/templates
Alessandro Miliucci 19cbd14f56
fix(zshrc): add ~/.local/bin/ to PATH as required by systemd
The vast majority of modern Linux distributions are systemd based. User specific binaries can be placed inside `~/.local/bin/` ([SPEC](https://www.freedesktop.org/software/systemd/man/latest/file-hierarchy.html#~/.local/bin/)).

For this reason, .bashrc already adds that location to PATH.
E.g. (from a Fedora 40 brand new installation)
```
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]; then
    PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
```
2024-05-14 08:51:55 +02:00
..
zshrc.zsh-template fix(zshrc): add ~/.local/bin/ to PATH as required by systemd 2024-05-14 08:51:55 +02:00