-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzshrc
50 lines (38 loc) · 1.37 KB
/
zshrc
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
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# Customize to your needs...
if [ -f ~/.env ]; then
. ~/.env
fi
if [ -f ~/.env_private ]; then
. ~/.env_private
fi
if [ -f ~/.aliases ]; then
. ~/.aliases
fi
if [ -f ~/.functions ]; then
. ~/.functions
fi
if [ -f ~/.functions_private ]; then
. ~/.functions_private
fi
# Disable corrections
unsetopt CORRECT
eval "$(rbenv init - zsh)"
[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh
eval "$(hub alias -s)"
# zsh-bd
. $HOME/.zsh/plugins/bd/bd.zsh
STRAP_BIN_DIR=~/Users/jdyer/workspace/strap/bin
if [ -d $STRAP_BIN_DIR ]; then
PATH="$STRAP_BIN_DIR:${PATH}"
fi
eval "$(nodenv init -)"
# tabtab source for serverless package
# uninstall by removing these lines or running `tabtab uninstall serverless`
[[ -f /Users/jdyer/workspace/customink/profiles/backend/node_modules/tabtab/.completions/serverless.zsh ]] && . /Users/jdyer/workspace/customink/profiles/backend/node_modules/tabtab/.completions/serverless.zsh
# tabtab source for sls package
# uninstall by removing these lines or running `tabtab uninstall sls`
[[ -f /Users/jdyer/workspace/customink/profiles/backend/node_modules/tabtab/.completions/sls.zsh ]] && . /Users/jdyer/workspace/customink/profiles/backend/node_modules/tabtab/.completions/sls.zsh