summaryrefslogtreecommitdiffstats
path: root/sh
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-01 08:43:28 -0700
committerJesse Luehrs <doy@tozt.net>2018-11-01 10:49:05 -0700
commit7edc7f8e9c1ab71fa4c5772be1ee00eb71b1d255 (patch)
tree439fbb144b1b8faa2aa6a99aee30600dc5635c71 /sh
parent7c640741e327e3dc995930ebf547568d08a55916 (diff)
downloadconf-7edc7f8e9c1ab71fa4c5772be1ee00eb71b1d255.tar.gz
conf-7edc7f8e9c1ab71fa4c5772be1ee00eb71b1d255.zip
add paths for homebrew if it's installed
Diffstat (limited to 'sh')
-rw-r--r--sh/env2
1 files changed, 2 insertions, 0 deletions
diff --git a/sh/env b/sh/env
index ece7491..de4dcd2 100644
--- a/sh/env
+++ b/sh/env
@@ -19,5 +19,7 @@ export PERL_CPANM_OPT="-q --mirror file://$HOME/perl5/minicpan/ --mirror http://
export FZF_DEFAULT_OPTS="--reverse --inline-info --bind=tab:down,shift-tab:up,change:top"
export FZF_DEFAULT_COMMAND="ag --hidden -l ."
export FANCY_PROMPT_COLORS="user_doy=bright_blue,host_lance=red,host_st-doy1=bright_white,host_bishamon=blue,host_tozt=bright_yellow,host_hush=bright_black"
+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: