From 2bf25062a694ca16275c69132969c6e06c79a02b Mon Sep 17 00:00:00 2001 From: James Dixon Date: Tue, 10 May 2022 20:54:19 -0400 Subject: [PATCH] add paths for macOS --- config/bash/.bashrc | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/config/bash/.bashrc b/config/bash/.bashrc index de22e8a..19e8e58 100644 --- a/config/bash/.bashrc +++ b/config/bash/.bashrc @@ -320,10 +320,7 @@ fi ## paths ## -## package managers ## - -# homebrew -[ -d "/opt/homebrew/bin" ] && appendpath "/opt/homebrew/bin" +## language version managers ## # rbenv (ruby) src_rbenv(){ @@ -370,6 +367,15 @@ if command -v cargo > /dev/null; then fi +## macOS package managers ## + +# homebrew +[ -d "/opt/homebrew/bin" ] && appendpath "/opt/homebrew/bin" + +# python3 (macOS) +[ -d "$HOME/Library/Python/3.8/bin" ] && appendpath "$HOME/Library/Python/3.8/bin" + + # local bins [ -d "$HOME/.local/bin" ] && appendpath "$HOME/.local/bin"