forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.path
34 lines (26 loc) · 1.22 KB
/
.path
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
29
30
31
32
33
34
# Load GNU coreutils into PATH
export PATH="$HOMEBREW_PREFIX/opt/coreutils/libexec/gnubin:$PATH"
export PATH="$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin:$PATH"
export PATH="$HOMEBREW_PREFIX/opt/grep/libexec/gnubin:$PATH"
# Discover GNU coreutils man pages
export MANPATH="$HOMEBREW_PREFIX/opt/coreutils/libexec/man:$MANPATH"
export MANPATH="$HOMEBREW_PREFIX/opt/gnu-sed/libexec/man:$MANPATH"
export MANPATH="$HOMEBREW_PREFIX/opt/grep/libexec/man:$MANPATH"
# Add Yarn and npm global binaries to the `$PATH`
# export PATH="$HOME/.config/yarn/global/node_modules/.bin:$(npm --global prefix)/bin:$PATH"
#
# Use non-brew node packages
export PATH="$HOME/.npm-packages/bin:$PATH"
# Add rbenv to PATH
export PATH="$HOME/.rbenv/bin:$PATH"
# Add Go-installed binaries to PATH
export PATH=$PATH:$HOMEBREW_PREFIX/opt/go/libexec/bin
export PATH=$PATH:$HOME/go/bin
export PATH=$PATH:$HOME/Library/Python/3.7/bin
# Add `~/bin` to the `$PATH`
export PATH="$HOME/bin:$PATH";
export PATH="$HOMEBREW_PREFIX/opt/openssl@1.1/bin:$PATH"
export PATH="$HOMEBREW_PREFIX/opt/openjdk/bin:$PATH"
export JAVA_HOME="$HOMEBREW_PREFIX/opt/openjdk@11"
export PATH="$HOMEBREW_PREFIX/opt/openjdk@11/bin:$PATH"
export CPPFLAGS="-I$HOMEBREW_PREFIX/opt/openjdk@11/include"