oh-my-zsh.sh 2.7 KB
Newer Older
1
# Check for updates on initial load...
Eddie Monge's avatar
Eddie Monge committed
2
if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then
3
  env ZSH=$ZSH DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh -f $ZSH/tools/check_for_upgrade.sh
4
5
fi

6
7
# Initializes Oh My Zsh

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

11
12
13
14
15
16
# 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

17
18
19
20
21
22
23
24
# 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
for config_file ($ZSH/lib/*.zsh); do
  custom_config_file="${ZSH_CUSTOM}/lib/${config_file:t}"
  [ -f "${custom_config_file}" ] && config_file=${custom_config_file}
  source $config_file
done

25
26
27
28
29
30
31

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
}
32
33
34
# Add all defined plugins to fpath. This must be done
# before running compinit.
for plugin ($plugins); do
35
  if is_plugin $ZSH_CUSTOM $plugin; then
36
    fpath=($ZSH_CUSTOM/plugins/$plugin $fpath)
37
  elif is_plugin $ZSH $plugin; then
38
39
40
    fpath=($ZSH/plugins/$plugin $fpath)
  fi
done
41

42
# Figure out the SHORT hostname
43
44
45
if [[ "$OSTYPE" = darwin* ]]; then
  # OS X's $HOST changes with dhcp, etc. Use ComputerName if possible.
  SHORT_HOST=$(scutil --get ComputerName 2>/dev/null) || SHORT_HOST=${HOST/.*/}
46
47
48
49
50
else
  SHORT_HOST=${HOST/.*/}
fi

# Save the location of the current completion dump file.
51
52
53
if [ -z "$ZSH_COMPDUMP" ]; then
  ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
fi
54

55
56
# Load and run compinit
autoload -U compinit
57
compinit -i -d "${ZSH_COMPDUMP}"
58

59
# Load all of the plugins that were defined in ~/.zshrc
Pat Regan's avatar
Pat Regan committed
60
for plugin ($plugins); do
61
62
  if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
    source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
63
  elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
64
65
66
67
    source $ZSH/plugins/$plugin/$plugin.plugin.zsh
  fi
done

68
# Load all of your custom configurations from custom/
69
70
71
for config_file ($ZSH_CUSTOM/*.zsh(N)); do
  source $config_file
done
72
unset config_file
73

74
# Load the theme
Eddie Monge's avatar
Eddie Monge committed
75
if [ "$ZSH_THEME" = "random" ]; then
76
77
  themes=($ZSH/themes/*zsh-theme)
  N=${#themes[@]}
Casey Watson's avatar
Casey Watson committed
78
  ((N=(RANDOM%N)+1))
79
80
81
82
  RANDOM_THEME=${themes[$N]}
  source "$RANDOM_THEME"
  echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
Eddie Monge's avatar
Eddie Monge committed
83
84
  if [ ! "$ZSH_THEME" = ""  ]; then
    if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]; then
85
      source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme"
Eddie Monge's avatar
Eddie Monge committed
86
    elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ]; then
Alex's avatar
Alex committed
87
      source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme"
88
89
90
    else
      source "$ZSH/themes/$ZSH_THEME.zsh-theme"
    fi
91
  fi
92
fi