|
...
|
...
|
@@ -15,9 +15,6 @@ for plugin ($plugins) fpath=($ZSH/plugins/$plugin $fpath)
|
|
15
|
15
|
autoload -U compinit
|
|
16
|
16
|
compinit -i
|
|
17
|
17
|
|
|
18
|
|
-# Load all of your custom configurations from custom/
|
|
19
|
|
-for config_file ($ZSH/custom/*.zsh) source $config_file
|
|
20
|
|
-
|
|
21
|
18
|
# Load all of the plugins that were defined in ~/.zshrc
|
|
22
|
19
|
for plugin ($plugins); do
|
|
23
|
20
|
if [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
|
|
...
|
...
|
@@ -25,6 +22,9 @@ for plugin ($plugins); do
|
|
25
|
25
|
fi
|
|
26
|
26
|
done
|
|
27
|
27
|
|
|
|
28
|
+# Load all of your custom configurations from custom/
|
|
|
29
|
+for config_file ($ZSH/custom/*.zsh) source $config_file
|
|
|
30
|
+
|
|
28
|
31
|
# Load the theme
|
|
29
|
32
|
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
|
|
30
|
33
|
|