2012-02-01 05:37:51 +01:00
|
|
|
#
|
2012-09-03 22:08:39 +02:00
|
|
|
# Initializes Prezto.
|
2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
2011-10-12 05:13:58 +02:00
|
|
|
|
2012-09-09 00:47:57 +02:00
|
|
|
#
|
|
|
|
# Version Check
|
|
|
|
#
|
|
|
|
|
2011-10-12 05:13:58 +02:00
|
|
|
# Check for the minimum supported version.
|
2017-10-20 19:38:48 +02:00
|
|
|
min_zsh_version='4.3.11'
|
2011-10-12 05:13:58 +02:00
|
|
|
if ! autoload -Uz is-at-least || ! is-at-least "$min_zsh_version"; then
|
2017-06-19 23:18:14 +02:00
|
|
|
printf "prezto: old shell detected, minimum required: %s\n" "$min_zsh_version" >&2
|
2012-06-03 19:08:07 +02:00
|
|
|
return 1
|
2011-10-12 05:13:58 +02:00
|
|
|
fi
|
|
|
|
unset min_zsh_version
|
2009-09-01 16:41:18 +02:00
|
|
|
|
2017-06-30 08:26:53 +02:00
|
|
|
# zprezto convenience updater
|
|
|
|
# The function is surrounded by ( ) instead of { } so it starts in a subshell
|
|
|
|
# and won't affect the environment of the calling shell
|
2017-07-07 01:00:58 +02:00
|
|
|
function zprezto-update {
|
|
|
|
(
|
|
|
|
function cannot-fast-forward {
|
|
|
|
local STATUS="$1"
|
|
|
|
[[ -n "${STATUS}" ]] && printf "%s\n" "${STATUS}"
|
|
|
|
printf "Unable to fast-forward the changes. You can fix this by "
|
|
|
|
printf "running\ncd '%s' and then\n'git pull' " "${ZPREZTODIR}"
|
|
|
|
printf "to manually pull and possibly merge in changes\n"
|
|
|
|
}
|
|
|
|
cd -q -- "${ZPREZTODIR}" || return 7
|
2017-08-04 19:54:19 +02:00
|
|
|
local orig_branch="$(git symbolic-ref HEAD 2> /dev/null | cut -d '/' -f 3)"
|
2017-07-07 01:00:58 +02:00
|
|
|
if [[ "$orig_branch" == "master" ]]; then
|
|
|
|
git fetch || return "$?"
|
|
|
|
local UPSTREAM=$(git rev-parse '@{u}')
|
2017-10-26 19:24:26 +02:00
|
|
|
local LOCAL=$(git rev-parse HEAD)
|
2017-07-07 01:00:58 +02:00
|
|
|
local REMOTE=$(git rev-parse "$UPSTREAM")
|
2017-10-26 19:24:26 +02:00
|
|
|
local BASE=$(git merge-base HEAD "$UPSTREAM")
|
2017-07-07 01:00:58 +02:00
|
|
|
if [[ $LOCAL == $REMOTE ]]; then
|
|
|
|
printf "There are no updates.\n"
|
|
|
|
return 0
|
|
|
|
elif [[ $LOCAL == $BASE ]]; then
|
2017-09-08 16:07:48 +02:00
|
|
|
printf "There is an update available. Trying to pull.\n\n"
|
2017-07-07 01:00:58 +02:00
|
|
|
if git pull --ff-only; then
|
|
|
|
printf "Syncing submodules\n"
|
2021-05-05 04:18:59 +02:00
|
|
|
git submodule sync --recursive
|
2019-10-14 16:27:01 +02:00
|
|
|
git submodule update --init --recursive
|
2017-07-07 01:00:58 +02:00
|
|
|
return $?
|
|
|
|
else
|
|
|
|
cannot-fast-forward
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
elif [[ $REMOTE == $BASE ]]; then
|
|
|
|
cannot-fast-forward "Commits in master that aren't in upstream."
|
|
|
|
return 1
|
2017-06-30 08:26:53 +02:00
|
|
|
else
|
2017-07-07 01:00:58 +02:00
|
|
|
cannot-fast-forward "Upstream and local have diverged."
|
2017-06-30 08:26:53 +02:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
else
|
2017-07-07 01:00:58 +02:00
|
|
|
printf "zprezto install at '%s' is not on the master branch " "${ZPREZTODIR}"
|
|
|
|
printf "(you're on '%s')\nUnable to automatically update.\n" "${orig_branch}"
|
2017-06-30 08:26:53 +02:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 1
|
2017-07-07 01:00:58 +02:00
|
|
|
)
|
|
|
|
}
|
2012-09-09 00:47:57 +02:00
|
|
|
#
|
|
|
|
# Module Loader
|
|
|
|
#
|
|
|
|
|
|
|
|
# Loads Prezto modules.
|
|
|
|
function pmodload {
|
|
|
|
local -a pmodules
|
2017-11-13 01:01:39 +01:00
|
|
|
local -a pmodule_dirs
|
|
|
|
local -a locations
|
2012-09-09 00:47:57 +02:00
|
|
|
local pmodule
|
2017-11-13 01:01:39 +01:00
|
|
|
local pmodule_location
|
2016-09-10 16:41:37 +02:00
|
|
|
local pfunction_glob='^([_.]*|prompt_*_setup|README*|*~)(-.N:t)'
|
2012-09-09 00:47:57 +02:00
|
|
|
|
2017-11-13 01:01:39 +01:00
|
|
|
# Load in any additional directories and warn if they don't exist
|
|
|
|
zstyle -a ':prezto:load' pmodule-dirs 'user_pmodule_dirs'
|
|
|
|
for user_dir in "$user_pmodule_dirs[@]"; do
|
|
|
|
if [[ ! -d "$user_dir" ]]; then
|
|
|
|
echo "$0: Missing user module dir: $user_dir"
|
|
|
|
fi
|
|
|
|
done
|
2012-09-09 00:47:57 +02:00
|
|
|
|
2017-11-13 01:01:39 +01:00
|
|
|
pmodule_dirs=("$ZPREZTODIR/modules" "$ZPREZTODIR/contrib" "$user_pmodule_dirs[@]")
|
2012-09-09 00:47:57 +02:00
|
|
|
|
2017-11-13 01:01:39 +01:00
|
|
|
# $argv is overridden in the anonymous function.
|
|
|
|
pmodules=("$argv[@]")
|
2012-09-09 00:47:57 +02:00
|
|
|
|
|
|
|
# Load Prezto modules.
|
|
|
|
for pmodule in "$pmodules[@]"; do
|
2012-09-25 23:33:10 +02:00
|
|
|
if zstyle -t ":prezto:module:$pmodule" loaded 'yes' 'no'; then
|
2012-09-09 00:47:57 +02:00
|
|
|
continue
|
|
|
|
else
|
2017-11-14 01:41:54 +01:00
|
|
|
locations=(${pmodule_dirs:+${^pmodule_dirs}/$pmodule(-/FN)})
|
2017-11-13 01:01:39 +01:00
|
|
|
if (( ${#locations} > 1 )); then
|
2020-01-14 00:49:37 +01:00
|
|
|
if ! zstyle -t ':prezto:load' pmodule-allow-overrides 'yes'; then
|
|
|
|
print "$0: conflicting module locations: $locations"
|
|
|
|
continue
|
|
|
|
fi
|
2017-11-13 01:01:39 +01:00
|
|
|
elif (( ${#locations} < 1 )); then
|
|
|
|
print "$0: no such module: $pmodule"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Grab the full path to this module
|
2020-01-14 00:49:37 +01:00
|
|
|
pmodule_location=${locations[-1]}
|
2017-11-13 01:01:39 +01:00
|
|
|
|
|
|
|
# Add functions to $fpath.
|
2020-01-08 16:26:10 +01:00
|
|
|
fpath=(${pmodule_location}/functions(-/FN) $fpath)
|
2017-11-13 01:01:39 +01:00
|
|
|
|
|
|
|
function {
|
|
|
|
local pfunction
|
|
|
|
|
|
|
|
# Extended globbing is needed for listing autoloadable function directories.
|
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
|
|
|
|
|
|
# Load Prezto functions.
|
|
|
|
for pfunction in ${pmodule_location}/functions/$~pfunction_glob; do
|
|
|
|
autoload -Uz "$pfunction"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-11-28 05:19:01 +01:00
|
|
|
if [[ -s "${pmodule_location}/init.zsh" ]]; then
|
|
|
|
source "${pmodule_location}/init.zsh"
|
2017-12-03 09:41:25 +01:00
|
|
|
elif [[ -s "${pmodule_location}/${pmodule}.plugin.zsh" ]]; then
|
|
|
|
source "${pmodule_location}/${pmodule}.plugin.zsh"
|
2012-09-09 00:47:57 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if (( $? == 0 )); then
|
|
|
|
zstyle ":prezto:module:$pmodule" loaded 'yes'
|
|
|
|
else
|
|
|
|
# Remove the $fpath entry.
|
2017-11-13 01:01:39 +01:00
|
|
|
fpath[(r)${pmodule_location}/functions]=()
|
2012-09-09 00:47:57 +02:00
|
|
|
|
|
|
|
function {
|
|
|
|
local pfunction
|
|
|
|
|
|
|
|
# Extended globbing is needed for listing autoloadable function
|
|
|
|
# directories.
|
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
|
|
|
|
|
|
# Unload Prezto functions.
|
2017-11-13 01:01:39 +01:00
|
|
|
for pfunction in ${pmodule_location}/functions/$~pfunction_glob; do
|
2012-09-09 00:47:57 +02:00
|
|
|
unfunction "$pfunction"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
zstyle ":prezto:module:$pmodule" loaded 'no'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Prezto Initialization
|
|
|
|
#
|
|
|
|
|
2017-03-08 20:22:39 +01:00
|
|
|
# This finds the directory prezto is installed to so plugin managers don't need
|
|
|
|
# to rely on dirty hacks to force prezto into a directory. Additionally, it
|
|
|
|
# needs to be done here because inside the pmodload function ${0:h} evaluates to
|
|
|
|
# the current directory of the shell rather than the prezto dir.
|
|
|
|
ZPREZTODIR=${0:h}
|
2017-03-08 02:42:41 +01:00
|
|
|
|
2012-09-03 22:13:53 +02:00
|
|
|
# Source the Prezto configuration file.
|
|
|
|
if [[ -s "${ZDOTDIR:-$HOME}/.zpreztorc" ]]; then
|
|
|
|
source "${ZDOTDIR:-$HOME}/.zpreztorc"
|
|
|
|
fi
|
|
|
|
|
2011-12-26 19:37:53 +01:00
|
|
|
# Disable color and theme in dumb terminals.
|
2011-06-01 08:48:26 +02:00
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
2012-09-03 22:08:39 +02:00
|
|
|
zstyle ':prezto:*:*' color 'no'
|
|
|
|
zstyle ':prezto:module:prompt' theme 'off'
|
2011-02-27 16:13:57 +01:00
|
|
|
fi
|
|
|
|
|
2012-03-28 18:41:39 +02:00
|
|
|
# Load Zsh modules.
|
2012-09-03 22:08:39 +02:00
|
|
|
zstyle -a ':prezto:load' zmodule 'zmodules'
|
2012-04-09 00:37:22 +02:00
|
|
|
for zmodule ("$zmodules[@]") zmodload "zsh/${(z)zmodule}"
|
2012-04-03 00:51:00 +02:00
|
|
|
unset zmodule{s,}
|
2012-03-30 21:45:44 +02:00
|
|
|
|
2021-04-30 00:37:09 +02:00
|
|
|
# Load more specific 'run-help' function from $fpath.
|
2021-05-01 10:05:19 +02:00
|
|
|
(( $+aliases[run-help] )) && unalias run-help && autoload -Uz run-help
|
2021-04-30 00:37:09 +02:00
|
|
|
|
2012-03-30 21:45:44 +02:00
|
|
|
# Autoload Zsh functions.
|
2012-09-03 22:08:39 +02:00
|
|
|
zstyle -a ':prezto:load' zfunction 'zfunctions'
|
2012-04-09 00:37:22 +02:00
|
|
|
for zfunction ("$zfunctions[@]") autoload -Uz "$zfunction"
|
2012-04-03 00:51:00 +02:00
|
|
|
unset zfunction{s,}
|
2011-07-15 04:50:40 +02:00
|
|
|
|
2012-09-03 22:38:18 +02:00
|
|
|
# Load Prezto modules.
|
2012-09-03 22:08:39 +02:00
|
|
|
zstyle -a ':prezto:load' pmodule 'pmodules'
|
|
|
|
pmodload "$pmodules[@]"
|
|
|
|
unset pmodules
|