From aac1a6644d8b89afbfee5e3bcccee8bc9bfad2fc Mon Sep 17 00:00:00 2001 From: Steven Proctor Date: Thu, 1 Oct 2015 08:49:50 -0500 Subject: [PATCH] update bash_profile for path settings --- .bash_profile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.bash_profile b/.bash_profile index b501e58..de3d5e8 100644 --- a/.bash_profile +++ b/.bash_profile @@ -2,14 +2,16 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc -PATH=/usr/local/bin:~/bin:/usr/local/share/npm/bin:$PATH +PATH=/usr/local/sbin:/usr/local/bin:~/bin:/usr/local/share/npm/bin:$PATH PATH=$PATH:$HOME +MANPATH=$MANPATH:/usr/local/opt/erlang/lib/erlang/man + set -o vi export EDITOR='vim' export CLICOLOR=1 -if which brew 2>/dev/null && [ -f $(brew --prefix)/etc/bash_completion ]; then +if which brew 2>/dev/null && [[ -f $(brew --prefix)/etc/bash_completion ]]; then . $(brew --prefix)/etc/bash_completion fi