dotfiles

My configuration files
git clone git://git.finwo.net/misc/dotfiles
Log | Files | Refs

commit f6ddc48abaa932f4348a85eef10f7662b4364767
parent ea703ec9a83b1a89c667dc9faa85ddee51dc3ba9
Author: finwo <finwo@pm.me>
Date:   Tue, 31 Oct 2023 13:29:23 +0100

Add homebrew bin path to zshrc for m1 mac

Diffstat:
Mzsh/home/.zshrc | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -19,6 +19,11 @@ if [ -d "/opt/homebrew/opt/openjdk@11/bin" ]; then export PATH="/opt/homebrew/opt/openjdk@11/bin:$PATH" fi +# Homebrew on M1 mac +if [ -d "/opt/homebrew/bin" ]; then + export PATH="/opt/homebrew/bin:$PATH" +fi + # }}} # History {{{