summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc13
1 files changed, 12 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index 23185cf..88e8a10 100644
--- a/.bashrc
+++ b/.bashrc
@@ -775,7 +775,18 @@ func_export man
775# Configure Homebrew 775# Configure Homebrew
776# 776#
777[[ -r ~/.homebrew_github_api_token ]] && export HOMEBREW_GITHUB_API_TOKEN=$(cat ~/.homebrew_github_api_token) 777[[ -r ~/.homebrew_github_api_token ]] && export HOMEBREW_GITHUB_API_TOKEN=$(cat ~/.homebrew_github_api_token)
778[[ -x /opt/homebrew/bin/brew ]] && eval $(/opt/homebrew/bin/brew shellenv) 778if [[ -d /opt/homebrew ]]; then
779 export HOMEBREW_PREFIX="/opt/homebrew";
780 export HOMEBREW_CELLAR="/opt/homebrew/Cellar";
781 export HOMEBREW_REPOSITORY="/opt/homebrew";
782
783 add_to_path_var MANPATH "/opt/homebrew/share/man"
784 add_to_path_var INFOPATH "/opt/homebrew/share/info"
785 add_to_path_var PATH "/opt/homebrew/bin"
786 add_to_path_var PATH "/opt/homebrew/sbin"
787
788 export MANPATH INFOPATH PATH
789fi
779 790
780# 791#
781# APPLICATION SPECIFIC HACKS 792# APPLICATION SPECIFIC HACKS