Add various applications to profile.

This commit is contained in:
Sebastian Bugge 2024-01-22 15:01:11 +01:00
parent dc778d0191
commit 8fd23cc72a
Signed by: kaholaz
GPG key ID: 2EFFEDEE03519691

View file

@ -27,3 +27,20 @@ if [ -s "$HOME/.local_profile" ]; then
fi fi
[ -f "/home/kaholaz/.ghcup/env" ] && source "/home/kaholaz/.ghcup/env" # ghcup-env [ -f "/home/kaholaz/.ghcup/env" ] && source "/home/kaholaz/.ghcup/env" # ghcup-env
if [ -d "$HOME/.asdf" ]; then
\. "$HOME/.asdf/asdf.sh"
\. "$HOME/.asdf/completions/asdf.bash"
fi
if [ -f "$HOME/.local/share/pnpm" ]; then
export PNPM_HOME="$HOME/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
fi
if [ -n "$ZSH_VERSION" ] && type "hugo" >/dev/null; then
. <(hugo completion zsh)
fi