oh-my-zsh.sh 3.63 KB
Newer Older
1
2
3
4
5
6
# Set ZSH_CACHE_DIR to the path where cache files should be created
# or else we will use the default cache/
if [[ -z "$ZSH_CACHE_DIR" ]]; then
  ZSH_CACHE_DIR="$ZSH/cache"
fi

Chao Du's avatar
Chao Du committed
7
8
9
10
11
# Migrate .zsh-update file to $ZSH_CACHE_DIR
if [ -f ~/.zsh-update ] && [ ! -f ${ZSH_CACHE_DIR}/.zsh-update ]; then
    mv ~/.zsh-update ${ZSH_CACHE_DIR}/.zsh-update
fi

12
# Check for updates on initial load...
Eddie Monge's avatar
Eddie Monge committed
13
if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then
14
  env ZSH=$ZSH ZSH_CACHE_DIR=$ZSH_CACHE_DIR DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh -f $ZSH/tools/check_for_upgrade.sh
15
16
fi

17
18
# Initializes Oh My Zsh

19
# add a function path
Guten's avatar
Guten committed
20
fpath=($ZSH/functions $ZSH/completions $fpath)
21

22
23
24
# Load all stock functions (from $fpath files) called below.
autoload -U compaudit compinit

25
26
27
28
29
30
# 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

Stephen's avatar
Stephen committed
31

32
33
34
35
36
37
38
39
# 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

40
41
42
43
44
45
46

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

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

# Save the location of the current completion dump file.
66
67
68
if [ -z "$ZSH_COMPDUMP" ]; then
  ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
fi
69

70
if [[ $ZSH_DISABLE_COMPFIX != true ]]; then
71
  # If completion insecurities exist, warn the user
72
  handle_completion_insecurities
73
  # Load only from secure directories
74
  compinit -i -C -d "${ZSH_COMPDUMP}"
75
else
76
  # If the user wants it, load from all found directories
77
  compinit -u -C -d "${ZSH_COMPDUMP}"
78
fi
79

80
# Load all of the plugins that were defined in ~/.zshrc
Pat Regan's avatar
Pat Regan committed
81
for plugin ($plugins); do
82
83
  if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
    source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
84
  elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
85
    source $ZSH/plugins/$plugin/$plugin.plugin.zsh
86
87
  else
    echo "Warning: plugin $plugin not found"
88
89
90
  fi
done

91
92
93
94
95
96
# Load all of your custom configurations from custom/
for config_file ($ZSH_CUSTOM/*.zsh(N)); do
  source $config_file
done
unset config_file

97
# Load the theme
LE Manh Cuong's avatar
LE Manh Cuong committed
98
99
100
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)
101
102
103
  else
    themes=($ZSH/themes/*zsh-theme)
  fi
104
  N=${#themes[@]}
Casey Watson's avatar
Casey Watson committed
105
  ((N=(RANDOM%N)+1))
106
107
108
109
  RANDOM_THEME=${themes[$N]}
  source "$RANDOM_THEME"
  echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
else
Eddie Monge's avatar
Eddie Monge committed
110
111
  if [ ! "$ZSH_THEME" = ""  ]; then
    if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]; then
112
      source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme"
Eddie Monge's avatar
Eddie Monge committed
113
    elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ]; then
Alex's avatar
Alex committed
114
      source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme"
115
116
117
    else
      source "$ZSH/themes/$ZSH_THEME.zsh-theme"
    fi
118
  fi
119
fi