31 lines
919 B
Bash
31 lines
919 B
Bash
#! zsh
|
|
typeset -A ZINIT
|
|
ZINIT[HOME_DIR]=$ZINIT_HOME
|
|
ZINIT[ZCOMPDUMP_PATH]=$XDG_CACHE_HOME/zsh/zcompdump
|
|
|
|
if [[ ! -f $ZINIT_HOME/bin/zinit.zsh ]]; then
|
|
git clone https://github.com/zdharma/zinit $ZINIT_HOME/bin
|
|
zcompile $ZINIT_HOME/bin/zinit.zsh
|
|
fi
|
|
source $ZINIT_HOME/bin/zinit.zsh
|
|
load=light
|
|
|
|
zinit $load willghatch/zsh-saneopt
|
|
|
|
zinit $load mafredri/zsh-async
|
|
zinit $load rupa/z
|
|
zinit $load sindresorhus/pure
|
|
|
|
zinit ice nocompile:! pick:c.zsh atpull:%atclone atclone:'dircolors -b LS_COLORS > c.zsh'
|
|
zinit $load trapd00r/LS_COLORS
|
|
|
|
zinit ice silent wait:1 atload:_zsh_autosuggest_start
|
|
zinit $load zsh-users/zsh-autosuggestions
|
|
|
|
zinit ice blockf; zinit $load zsh-users/zsh-completions
|
|
|
|
zinit ice silent wait:1; zinit $load mollifier/cd-gitroot
|
|
zinit ice silent wait:1; zinit $load micha/resty
|
|
zinit ice silent wait:1; zinit $load supercrabtree/k
|
|
|
|
zinit ice silent wait!1; zinit $load zdharma/fast-syntax-highlighting
|