oh-my-zsh.sh 3.42 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
# Load all stock functions (from $fpath files) called below.
autoload -U compaudit compinit

14
15
16
17
18
19
# 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

Archie's avatar
Archie committed
20
# Set ZSH_CACHE_DIR to the path where cache files should be created
Stephen's avatar
Stephen committed
21
22
# or else we will use the default cache/
if [[ -z "$ZSH_CACHE_DIR" ]]; then
23
  ZSH_CACHE_DIR="$ZSH/cache"
Stephen's avatar
Stephen committed
24
25
26
fi


27
28
29
30
31
32
33
34
# 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

35
36
37
38
39
40
41

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
}
42
43
44
# Add all defined plugins to fpath. This must be done
# before running compinit.
for plugin ($plugins); do
45
  if is_plugin $ZSH_CUSTOM $plugin; then
46
    fpath=($ZSH_CUSTOM/plugins/$plugin $fpath)
47
  elif is_plugin $ZSH $plugin; then
48
49
50
    fpath=($ZSH/plugins/$plugin $fpath)
  fi
done
51

52
# Figure out the SHORT hostname
53
if [[ "$OSTYPE" = darwin* ]]; then
54
  # macOS's $HOST changes with dhcp, etc. Use ComputerName if possible.
55
  SHORT_HOST=$(scutil --get ComputerName 2>/dev/null) || SHORT_HOST=${HOST/.*/}
56
57
58
59
60
else
  SHORT_HOST=${HOST/.*/}
fi

# Save the location of the current completion dump file.
61
62
63
if [ -z "$ZSH_COMPDUMP" ]; then
  ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
fi
64

65
if [[ $ZSH_DISABLE_COMPFIX != true ]]; then
66
  # If completion insecurities exist, warn the user
67
68
69
  if ! compaudit &>/dev/null; then
    handle_completion_insecurities
  fi
70
71
  # Load only from secure directories
  compinit -i -d "${ZSH_COMPDUMP}"
72
else
73
  # If the user wants it, load from all found directories
74
  compinit -u -d "${ZSH_COMPDUMP}"
75
fi
76

77
# Load all of the plugins that were defined in ~/.zshrc
Pat Regan's avatar
Pat Regan committed
78
for plugin ($plugins); do
79
80
  if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
    source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
81
  elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
82
83
84
85
    source $ZSH/plugins/$plugin/$plugin.plugin.zsh
  fi
done

86
87
88
89
90
91
# Load all of your custom configurations from custom/
for config_file ($ZSH_CUSTOM/*.zsh(N)); do
  source $config_file
done
unset config_file

92
# Load the theme
LE Manh Cuong's avatar
LE Manh Cuong committed
93
94
95
if [[ "$ZSH_THEME" == "random" ]]; then
  if [[ "${(t)ZSH_THEME_RANDOM_CANDIDATES}" = "array" ]] && [[ "${#ZSH_THEME_RANDOM_CANDIDATES[@]}" -gt 0 ]]; then
    themes=($ZSH/themes/${^ZSH_THEME_RANDOM_CANDIDATES}.zsh-theme)
96
97
98
  else
    themes=($ZSH/themes/*zsh-theme)
  fi
99
  N=${#themes[@]}
Casey Watson's avatar
Casey Watson committed
100
  ((N=(RANDOM%N)+1))
101
102
103
104
  RANDOM_THEME=${themes[$N]}
  source "$RANDOM_THEME"
  echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
Eddie Monge's avatar
Eddie Monge committed
105
106
  if [ ! "$ZSH_THEME" = ""  ]; then
    if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]; then
107
      source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme"
Eddie Monge's avatar
Eddie Monge committed
108
    elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ]; then
Alex's avatar
Alex committed
109
      source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme"
110
111
112
    else
      source "$ZSH/themes/$ZSH_THEME.zsh-theme"
    fi
113
  fi
114
fi