-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzshrc.local
More file actions
34 lines (23 loc) · 859 Bytes
/
zshrc.local
File metadata and controls
34 lines (23 loc) · 859 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
29
30
31
32
33
34
cdpath=($HOME/pul)
autoload -Uz compinit && compinit
# set ansible to use lpass for vault password
export ANSIBLE_VAULT_PASSWORD_FILE="$(command -v lastpass-ansible)"
export LPASS_AGENT_TIMEOUT="32400"
function bgrep {
ag "$@" `bundle list --paths`
}
function bfind { find `bundle list --paths` -type f -name "$@"}
if type brew &>/dev/null; then
FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH
autoload -Uz compinit
compinit
fi
export PATH="/usr/local/opt/git/bin:$PATH"
# allow configuration of terminal color scheme
export CLICOLOR=1
# export PATH="/Users/aheadley/.asdf/installs/python/3.9.0/lib/python3.9/site-packages:$PATH"
# keep rails from crashing on database connection
# see https://github.com/ged/ruby-pg/issues/538
# export PGGSSENCMODE="disable"
# help pg gem find libpq
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"