-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc.local
37 lines (25 loc) · 968 Bytes
/
zshrc.local
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
# Homebrew-related
# ----------------
export PATH="/usr/local/opt/icu4c/bin:$PATH"
export PATH="/usr/local/opt/icu4c/sbin:$PATH"
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig"
export PATH="$HOME/.bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH" # Python/pipenv
# export PATH="/usr/local/go/bin:$PATH"
# export PATH=$PATH:$(go env GOPATH)/bin
export PATH="$HOME/.deno/bin:$PATH"
# No idea why asdf-nodejs doesn't put these in a global directory
export PATH="$HOME/.asdf/installs/nodejs/16.0.0/.npm/bin:$PATH"
# This is the most important part!
export PS1="🍔 "
export HOMEBREW_NO_AUTO_UPDATE=1
# Workaround for macOS security/runtime issue
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
[ -f ~/.zshrc.host ] && source ~/.zshrc.host
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
alias vi="vim"
export PATH="$HOME/.bin:$PATH"
# Completions
## sqlite-utils
# eval "$(_SQLITE_UTILS_COMPLETE=zsh_source sqlite-utils)"