this repo has no description
1eval "$(/opt/homebrew/bin/brew shellenv)"
2
3export RT_HOME="/Users/jonathan/local/rt"
4
5# direnv
6
7eval "$(direnv hook zsh)"
8
9# gnubin
10
11for i in /opt/homebrew/Cellar/*/*/libexec/gnubin; do
12 export PATH="$i:$PATH"
13done
14
15for i in /opt/homebrew/Cellar/*/*/libexec/gnuman; do
16 export MANPATH="$i:$MANPATH"
17done
18
19# postgres 12 (specifically)
20
21export PATH="/opt/homebrew/opt/postgresql@12/bin:$PATH"
22
23# python
24
25export PATH="$(pyenv root)/shims:$PATH"
26
27# gcloud
28
29if [ -f '/Users/jonathan/local/rt/google-cloud-sdk/path.zsh.inc' ]; then
30 . '/Users/jonathan/local/rt/google-cloud-sdk/path.zsh.inc'
31fi
32
33if [ -f '/Users/jonathan/local/rt/google-cloud-sdk/completion.zsh.inc' ];
34 then . '/Users/jonathan/local/rt/google-cloud-sdk/completion.zsh.inc'
35fi
36
37# sdkman
38
39export SDKMAN_DIR="$RT_HOME/sdkman"
40. "$SDKMAN_DIR/bin/sdkman-init.sh"