30 lines
421 B
Cheetah
30 lines
421 B
Cheetah
#!{{ lookPath "bash" }}
|
|
|
|
# title
|
|
title="Zsh customization"
|
|
|
|
# include lib
|
|
. ${CHEZMOI_WORKING_TREE}/scripts/utils.sh
|
|
|
|
# Environment variables
|
|
ZIMDIR=${HOME}/.zim
|
|
|
|
|
|
### Update shell install ###
|
|
log "Begin ${title}"
|
|
|
|
|
|
## Update cargo
|
|
inf "installing cargo-update..."
|
|
|
|
cargo install cargo-update
|
|
|
|
### Config Zsh ###
|
|
inf "installing zim framework"
|
|
|
|
$(which zsh) -c "source ${ZIMDIR}/zimfw.zsh init -q"
|
|
|
|
|
|
log "${title} done"
|
|
|