oh-my-zsh.sh 3.75 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

7
# Check for updates on initial load...
8
source $ZSH/tools/check_for_upgrade.sh
9

10
11
# Initializes Oh My Zsh

12
# add a function path
Guten's avatar
Guten committed
13
fpath=($ZSH/functions $ZSH/completions $fpath)
14

15
16
17
# Load all stock functions (from $fpath files) called below.
autoload -U compaudit compinit

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

Stephen's avatar
Stephen committed
24

25
26
27
is_plugin() {
  local base_dir=$1
  local name=$2
28
29
  builtin test -f $base_dir/plugins/$name/$name.plugin.zsh \
    || builtin test -f $base_dir/plugins/$name/_$name
30
}
31

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
    fpath=($ZSH/plugins/$plugin $fpath)
39
  else
40
    echo "[oh-my-zsh] plugin '$plugin' not found"
41
42
  fi
done
43

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

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

57
# Construct zcompdump OMZ metadata
58
59
zcompdump_revision="#omz revision: $(builtin cd -q "$ZSH"; git rev-parse HEAD 2>/dev/null)"
zcompdump_fpath="#omz fpath: $fpath"
60
61

# Delete the zcompdump file if OMZ zcompdump metadata changed
62
63
if ! command grep -q -Fx "$zcompdump_revision" "$ZSH_COMPDUMP" 2>/dev/null \
   || ! command grep -q -Fx "$zcompdump_fpath" "$ZSH_COMPDUMP" 2>/dev/null; then
64
65
66
67
  command rm -f "$ZSH_COMPDUMP"
  zcompdump_refresh=1
fi

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

79
80
# Append zcompdump metadata if missing
if (( $zcompdump_refresh )); then
81
82
83
  # Use `tee` in case the $ZSH_COMPDUMP filename is invalid, to silence the error
  # See https://github.com/ohmyzsh/ohmyzsh/commit/dd1a7269#commitcomment-39003489
  tee -a "$ZSH_COMPDUMP" &>/dev/null <<EOF
84
85
86
87

$zcompdump_revision
$zcompdump_fpath
EOF
88
89
fi

90
unset zcompdump_revision zcompdump_fpath zcompdump_refresh
91

92
93
94
95
96
97
98
99
100

# 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

101
# Load all of the plugins that were defined in ~/.zshrc
Pat Regan's avatar
Pat Regan committed
102
for plugin ($plugins); do
103
104
  if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
    source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
105
  elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
106
107
108
109
    source $ZSH/plugins/$plugin/$plugin.plugin.zsh
  fi
done

110
111
112
113
114
115
# Load all of your custom configurations from custom/
for config_file ($ZSH_CUSTOM/*.zsh(N)); do
  source $config_file
done
unset config_file

116
# Load the theme
117
118
119
120
121
if [ ! "$ZSH_THEME" = ""  ]; then
  if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]; then
    source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme"
  elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ]; then
    source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme"
122
  else
123
    source "$ZSH/themes/$ZSH_THEME.zsh-theme"
124
  fi
125
fi