-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.zprofile
71 lines (54 loc) · 2.12 KB
/
.zprofile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Install from https://github.com/romkatv/powerlevel10k
source /opt/homebrew/opt/powerlevel10k/powerlevel10k.zsh-theme
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
# Standard PATH things
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
# Etcd Stuff
export ETCDCTL_API=3
export ETCDCTL_ENDPOINTS=localhost:2379
# Eventbus stuff
export ETCD_ENDPOINT=http://localhost:2379
export EVENTBUS_ENDPOINT=localhost:19091
export KAFKA_PIXY_ENDPOINT=localhost:19091
# === SEE 1Password for API KEYS ===
# mailgun-go stuff for runscope and travis ci testing
export MG_API_KEY=
export MG_DOMAIN=
export MG_URL=https://api.mailgun.net/v3
# mailgun-go stuff for mg.thrawn01.org
export MG_API_KEY=
export MG_DOMAIN=
export MG_URL=https://api.mailgun.net/v3
export SLACK_TOKEN=
# Colorize ls files (Goto https://geoff.greer.fm/lscolors/ to change colors)
export CLICOLOR=1
export LSCOLORS="exfxfxdxcxegedabagacad"
alias ls='ls -G'
export HOMEBREW_PREFIX="/opt/homebrew";
export HOMEBREW_CELLAR="/opt/homebrew/Cellar";
export HOMEBREW_REPOSITORY="/opt/homebrew";
export MANPATH="/opt/homebrew/share/man${MANPATH+:$MANPATH}:";
export INFOPATH="/opt/homebrew/share/info:${INFOPATH:-}";
# Added by Toolbox App
export PATH="$PATH:/Users/thrawn/Library/Application Support/JetBrains/Toolbox/scripts"
# Brew
export PATH="/opt/homebrew/bin:/opt/homebrew/sbin${PATH+:$PATH}";
# Python
export PATH="/opt/homebrew/opt/[email protected]/libexec/bin${PATH+:$PATH}";
# Golang
export GOPRIVATE=github.com/mailgun
export GOPATH=/Users/thrawn/go
export GOROOT=/usr/local/go
export GOBIN=$GOPATH/bin
export PATH=$GOBIN:$PATH
# Rewrite
alias ssh='rewrite-args ssh -X'
# Home bin
export PATH="/Users/thrawn/bin${PATH+:$PATH}";