-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.paths
More file actions
28 lines (21 loc) · 845 Bytes
/
.paths
File metadata and controls
28 lines (21 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export PATH="$HOME/.rbenv/shims:$PATH"
export PATH="$HOME/.rbenv/bin:$PATH"
# Enable use of `gmake` aliased as `make`
export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"
# Adds Homebrew to PATH on M1 machines
if [[ $APPLE_SILICON = "true" ]]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
# llvm
export PATH="/usr/local/opt/llvm/bin:$PATH"
# Lock OpenSSL at v1
# export PATH="/opt/homebrew/Cellar/openssl@1.1/1.1.1t/bin:$PATH"
# Gradle path
export PATH=/opt/gradle/gradle-7.0.2/bin:$PATH
# MySQL path
# export PATH=/opt/homebrew/opt/mysql-client/bin:$PATH
# mysql-client v9 has some password plugin issues (https://github.com/Homebrew/homebrew-core/issues/180498), so we've locked it to v8.4:
export PATH=/opt/homebrew/opt/mysql-client@8.4/bin:$PATH
# Deno
export DENO_INSTALL="$HOME/.deno"
export PATH="$DENO_INSTALL/bin:$PATH"