oh-my-zsh.sh 1.29 KB
Newer Older
1
2
3
4
5
6
7
8
# Check for updates on initial load...
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
then
  return
else
  /usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh
fi

9
10
# Initializes Oh My Zsh

11
# add a function path
Guten's avatar
Guten committed
12
fpath=($ZSH/functions $ZSH/completions $fpath)
13

14
15
# Load all of the config files in ~/oh-my-zsh that end in .zsh
# TIP: Add files you don't want in git to .gitignore
16
for config_file ($ZSH/lib/*.zsh) source $config_file
17

18
# Add all defined plugins to fpath
19
plugin=${plugin:=()}
20
for plugin ($plugins) fpath=($ZSH/plugins/$plugin $fpath)
21

22
23
24
# Load and run compinit
autoload -U compinit
compinit -i
25

26
# Load all of the plugins that were defined in ~/.zshrc
Pat Regan's avatar
Pat Regan committed
27
for plugin ($plugins); do
28
29
30
  if [ -f $ZSH/custom/plugins/$plugin/$plugin.plugin.zsh ]; then
    source $ZSH/custom/plugins/$plugin/$plugin.plugin.zsh
  elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
31
32
33
34
    source $ZSH/plugins/$plugin/$plugin.plugin.zsh
  fi
done

35
36
# Load all of your custom configurations from custom/
for config_file ($ZSH/custom/*.zsh) source $config_file
37

38
# Load the theme
39
40
41
42
if [ "$ZSH_THEME" = "random" ]
then
  themes=($ZSH/themes/*zsh-theme)
  N=${#themes[@]}
Casey Watson's avatar
Casey Watson committed
43
  ((N=(RANDOM%N)+1))
44
45
46
47
48
49
50
  RANDOM_THEME=${themes[$N]}
  source "$RANDOM_THEME"
  echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
  source "$ZSH/themes/$ZSH_THEME.zsh-theme"
fi