summaryrefslogtreecommitdiffstats
path: root/.zprofile
blob: 31e632938f6d18c245dc6840b53a6bbe62d5c99c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
typeset -U PATH path

path=( $HOME/.local/bin $path )

if test -d /usr/lib/flatpak-xdg-utils/
then
	path=( /usr/lib/flatpak-xdg-utils $path )
fi

if test -d "$HOME/.local/opt/go/bin"
then
	path=( "$HOME/.local/opt/go/bin" $path )
fi

if test -d "$HOME/go/bin"
then
	path=( "$HOME/go/bin" $path )
fi

export PATH