From 219bbaf74cda3f7d24caf874ce44b6cb178b6501 Mon Sep 17 00:00:00 2001 From: Thomas Preisner Date: Wed, 22 May 2019 16:18:33 +0200 Subject: [PATCH] zsh: exports.zsh: extend PATH by various standard paths --- zsh/exports.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh/exports.zsh b/zsh/exports.zsh index 1c29b67..f65f14e 100644 --- a/zsh/exports.zsh +++ b/zsh/exports.zsh @@ -4,6 +4,8 @@ if type vim >/dev/null 2>&1; then fi # extend PATH variable +export PATH="/usr/local/sbin:/usr/sbin:/sbin:$PATH" + if [ -d "$HOME/bin" ]; then export PATH="$HOME/bin:$PATH" fi