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

7
8
# Initializes Oh My Zsh

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

12
13
# 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
14
15
16
for config_file ($ZSH/lib/*.zsh); do
  source $config_file
done
17

18
19
20
21
22
23
# Set ZSH_CUSTOM to the path where your custom config files
# and plugins exists, or else we will use the default custom/
if [[ -z "$ZSH_CUSTOM" ]]; then
    ZSH_CUSTOM="$ZSH/custom"
fi

24
25
26
27
28
29
30

is_plugin() {
  local base_dir=$1
  local name=$2
  test -f $base_dir/plugins/$name/$name.plugin.zsh \
    || test -f $base_dir/plugins/$name/_$name
}
31
32
33
# Add all defined plugins to fpath. This must be done
# before running compinit.
for plugin ($plugins); do
34
  if is_plugin $ZSH_CUSTOM $plugin; then
35
    fpath=($ZSH_CUSTOM/plugins/$plugin $fpath)
36
  elif is_plugin $ZSH $plugin; then
37
38
39
    fpath=($ZSH/plugins/$plugin $fpath)
  fi
done
40

41
42
43
# Load and run compinit
autoload -U compinit
compinit -i
44

45

46
# Load all of the plugins that were defined in ~/.zshrc
Pat Regan's avatar
Pat Regan committed
47
for plugin ($plugins); do
48
49
  if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
    source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
50
  elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
51
52
53
54
    source $ZSH/plugins/$plugin/$plugin.plugin.zsh
  fi
done

55
# Load all of your custom configurations from custom/
56
57
58
for config_file ($ZSH_CUSTOM/*.zsh(N)); do
  source $config_file
done
59

60
# Load the theme
61
62
63
64
if [ "$ZSH_THEME" = "random" ]
then
  themes=($ZSH/themes/*zsh-theme)
  N=${#themes[@]}
Casey Watson's avatar
Casey Watson committed
65
  ((N=(RANDOM%N)+1))
66
67
68
69
  RANDOM_THEME=${themes[$N]}
  source "$RANDOM_THEME"
  echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
70
71
  if [ ! "$ZSH_THEME" = ""  ]
  then
72
    if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]
73
    then
74
      source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme"
75
76
77
    else
      source "$ZSH/themes/$ZSH_THEME.zsh-theme"
    fi
78
  fi
79
fi