Merge branch 'master' of ssh://git.narbuto.lt:2203/simas/dotfiles

This commit is contained in:
Simonas Narbutas
2019-02-21 09:37:26 +01:00

View File

@@ -1 +0,0 @@
/home/snarbutas/.yadm/alt/.zsh.d/00-path.zsh##Linux.epiphanius

6
.zsh.d/00-path.zsh Normal file
View File

@@ -0,0 +1,6 @@
for dir in /usr/bin /usr/sbin /sbin /bin ~/.bin; do
if test -d "$dir" && ! grep -q -e "^${dir}:" -e ":${dir}:" -e ":${dir}" <<< $PATH; then
PATH="${dir}:${PATH}"
fi
done
export PATH