-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzshrc
More file actions
53 lines (40 loc) · 1.18 KB
/
Copy pathzshrc
File metadata and controls
53 lines (40 loc) · 1.18 KB
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
# Functions
source ~/.shell/functions.sh
# Allow local customizations in the ~/.shell_local_before file
if [ -f ~/.shell_local_before ]; then
source ~/.shell_local_before
fi
# Allow local customizations in the ~/.zshrc_local_before file
if [ -f ~/.zshrc_local_before ]; then
source ~/.zshrc_local_before
fi
# External plugins (initialized before)
source ~/.zsh/plugins_before.zsh
# Settings
source ~/.zsh/settings.zsh
# Bootstrap
source ~/.shell/bootstrap.sh
# External settings
source ~/.shell/external.sh
# Aliases
source ~/.shell/aliases.sh
# Custom prompt
# source ~/.zsh/prompt.zsh
# External plugins (initialized after)
source ~/.zsh/plugins_after.zsh
# Allow local customizations in the ~/.shell_local_after file
if [ -f ~/.shell_local_after ]; then
source ~/.shell_local_after
fi
# Allow local customizations in the ~/.zshrc_local_after file
if [ -f ~/.zshrc_local_after ]; then
source ~/.zshrc_local_after
fi
# Allow local customizations in the ~/.zprofile file
if [ -f ~/.zprofile ]; then
source ~/.zprofile
fi
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init - zsh)"
eval "$(pyenv virtualenv-init -)"