mirror of
https://github.com/zdharma-continuum/zinit.git
synced 2025-01-31 00:58:17 +01:00
515688bc97
This reverts commitb979847bd4
, reversing changes made toda924a21a1
. I (@vladdoster) accidentally merged this into the wrong repository. Apologies for the lack of due diligence.
41 lines
839 B
Bash
41 lines
839 B
Bash
# Initialization. Trigger stuff that only needs to be run once, at startup.
|
|
if [[ "$$" == 1 ]] && [[ -z "$ZSH_NO_INIT" ]]
|
|
then
|
|
source /src/docker/init.zsh
|
|
fi
|
|
|
|
# load zinit
|
|
source /src/zinit.zsh
|
|
autoload -Uz _zinit
|
|
(( ${+_comps} )) && _comps[zinit]=_zinit
|
|
|
|
# load zinit setup utility functions
|
|
source /src/docker/utils.zsh
|
|
|
|
# Add ZPFX/bin and GOPATH/bin to PATH
|
|
typeset -U path
|
|
path=("${ZPFX:-${HOME}/.local/share/zinit/polaris}/bin" "${HOME}/go/bin" $path)
|
|
|
|
# Install custom zsh version
|
|
if [[ -n "$ZINIT_ZSH_VERSION" ]]
|
|
then
|
|
zinit::pack-zsh "$ZINIT_ZSH_VERSION"
|
|
fi
|
|
|
|
source /src/docker/zshrc-fancy
|
|
|
|
# Source init file
|
|
INIT_FILE="/init.zsh"
|
|
if [[ -r "$INIT_FILE" ]]
|
|
then
|
|
source "$INIT_FILE"
|
|
fi
|
|
|
|
# Local Variables:
|
|
# mode: Shell-Script
|
|
# sh-indentation: 2
|
|
# indent-tabs-mode: nil
|
|
# sh-basic-offset: 2
|
|
# End:
|
|
# vim: ft=zsh sw=2 ts=2 et
|
|
|