-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzshrc
More file actions
30 lines (22 loc) · 643 Bytes
/
zshrc
File metadata and controls
30 lines (22 loc) · 643 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
# 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
# Environment variables and exports
#source ~/.zsh/env.sh
# Settings
source ~/.zsh/settings.zsh
# Aliases
source ~/.zsh/aliases.zsh
# Custom prompt
source ~/.zsh/prompt.zsh
# Syntax highlighting
source ~/.zsh/syntax.zsh
# External plugins (initialized after)
source ~/.zsh/plugins_after.zsh
# Allow local customizations in the ~/.zshrc_local_after file
if [ -f ~/.zshrc_local_after ]; then
source ~/.zshrc_local_after
fi