this string has no description
.zprofile
edited
1# Homebrew
2eval "$(/opt/homebrew/bin/brew shellenv)"
3
4# LLVM
5export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
6
7# Rustup
8export PATH="/opt/homebrew/opt/rustup/bin:$PATH"
9
10# Cargo
11export PATH="$HOME/.cargo/bin:$PATH"
12
13# GHCup
14export PATH="$HOME/.ghcup/bin:$PATH"
15
16# GNU binutils for ELF AArch64
17export PATH="/opt/homebrew/opt/binutils/bin:$PATH"
18
19# Personal scripts (some tools also write their binaries here)
20export PATH="$HOME/.local/bin:$PATH"