-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
42 lines (37 loc) · 1.14 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
#########################################
# Initiate ZSH configuration
#########################################
for file in $HOME/.X4/(global|local)/zsh/*.zsh; do
xsource $file
done
#########################################
# Set Shell Theme
#########################################
if [[ -e $HOME/.X4/global/themes ]]; then
xsource $HOME/.X4/global/themes/$ZSH_PROMPT.zsh
fi
#########################################
# Load external ZSH Bundles
#########################################
for bundle in $HOME/.X4/bundle/*; do
test -d $bundle && bundle=$bundle/${bundle##*/}.zsh
test -f $bundle && source $bundle
done
#########################################
# Define Shell Functions
#########################################
for file in $HOME/.X4/(global|local)/functions/*.zsh; do
xsource $file
done
#########################################
# Set Shell Aliases
#########################################
for file in $HOME/.X4/(global|local)/aliases/*.zsh; do
xsource $file
done
#########################################
# Custom ZSH Settings
#########################################
if [[ -e $HOME/.zprofile ]]; then
xsource $HOME/.zprofile
fi