.dotfiles/bash/path

53 lines
1.0 KiB
Plaintext
Raw Normal View History

# vim: ft=sh
2022-04-16 19:54:07 +00:00
# Local user bin
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
2022-04-16 19:54:07 +00:00
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin::$PATH"
#PATH="$HOME/.local/bin:$HOME/.local/bin/firefox:$PATH"
2022-04-16 19:54:07 +00:00
fi
#if [ -d "$HOME/.local/share/applications" ] ; then
#export PATH="$HOME/.local/share/applications/:$PATH"
#fi
# Nix Packages
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then
source $HOME/.nix-profile/etc/profile.d/nix.sh
2022-04-16 19:54:07 +00:00
fi
# Private scripts
if [ -d "$HOME/.private-scripts" ] ; then
PATH="$HOME/.private-scripts:$PATH"
fi
# Public scripts
if [ -d "$HOME/scripts" ] ; then
PATH="$HOME/scripts:$PATH"
fi
# Perl
PATH="${HOME}/perl5/bin:$PATH"
2022-04-16 19:54:07 +00:00
# Python
export PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
2022-04-16 19:54:07 +00:00
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
# Rust
PATH="${HOME}/.cargo/bin:$PATH"
2022-04-16 19:54:07 +00:00
2022-12-13 03:44:24 +00:00
if [ -f "/run/.containerenv" ]; then
source "$HOME/.dotfiles/bash/path.distrobox"
else
source "$HOME/.dotfiles/bash/path.host"
fi
2022-04-16 19:54:07 +00:00
# Export PATH
export PATH="$PATH"