summaryrefslogtreecommitdiffstats
path: root/config/sh/env
diff options
context:
space:
mode:
Diffstat (limited to 'config/sh/env')
-rw-r--r--config/sh/env6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/sh/env b/config/sh/env
index bc0bc9c..9887d1d 100644
--- a/config/sh/env
+++ b/config/sh/env
@@ -9,7 +9,7 @@ if [ -x "$ssh" ]; then
export GIT_SSH="$ssh"
export RSYNC_RSH="$ssh"
fi
-if type sudo-askpass > /dev/null 2>&1; then
+if type sudo-askpass >/dev/null 2>&1; then
SUDO_ASKPASS=$(command -v sudo-askpass)
export SUDO_ASKPASS
fi
@@ -20,7 +20,7 @@ export FZF_DEFAULT_OPTS="--reverse --inline-info --bind=tab:down,shift-tab:up,ch
export FZF_DEFAULT_COMMAND="ag --hidden -l ."
export FANCY_PROMPT_COLORS="user_doy=bright_blue,host_st-doy2=bright_white,host_tozt=bright_yellow,host_partofme=magenta,host_mail=green,host_hornet=red"
export PASSWORD_STORE_X_SELECTION=primary
-type brew > /dev/null 2>&1 && export PATH="/usr/local/opt/coreutils/libexec/gnubin:/usr/local/opt/findutils/libexec/gnubin:/usr/local/sbin:$PATH"
-type brew > /dev/null 2>&1 && export MANPATH="/usr/local/opt/coreutils/libexec/gnuman:/usr/local/opt/findutils/libexec/gnuman:$MANPATH"
+type brew >/dev/null 2>&1 && export PATH="/usr/local/opt/coreutils/libexec/gnubin:/usr/local/opt/findutils/libexec/gnubin:/usr/local/sbin:$PATH"
+type brew >/dev/null 2>&1 && export MANPATH="/usr/local/opt/coreutils/libexec/gnuman:/usr/local/opt/findutils/libexec/gnuman:$MANPATH"
# vim:ft=sh: