oh-my-zsh.sh 2.5 KB
Newer Older
Moinak Ghosh's avatar
Moinak Ghosh committed
1
PLAT=`uname -s`
2
# Check for updates on initial load...
Eddie Monge's avatar
Eddie Monge committed
3
if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then
4
  /usr/bin/env ZSH=$ZSH DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh -f $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
44
45
46
47
48
49
# Figure out the SHORT hostname
if [ -n "$commands[scutil]" ]; then
  # OS X
  SHORT_HOST=$(scutil --get ComputerName)
else
  SHORT_HOST=${HOST/.*/}
fi

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

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

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

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

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