dotfiles/_src.posix/private_dot_config/sz.env/zzz_chezmoi.env.tmpl

24 lines
746 B
Cheetah
Raw Normal View History

2024-09-19 04:31:48 +00:00
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
# shellcheck disable=SC1090
if is_cmd 'chezmoi'; then
alias cz="chezmoi "
eval "$( chezmoi completion "${SHELL##*/}" | sed -Ee 's/(complete -o default .* chezmoi)/\1 cz/' )"
export CHEZMOI_GITHUB_ACCESS_TOKEN={{- .githubToken | quote }}
2024-09-19 04:31:48 +00:00
czcd() {
cd "$(chezmoi source-path "${@}")"
}
2025-03-17 20:31:01 +00:00
czedext() {
local CZ_EXT="$(find $(chezmoi source-path) -mindepth 1 -maxdepth 1 -name '.chezmoiexternal.*')"
CZ_EXT="${CZ_EXT:-$(chezmoi source-path "${@}")/.chezmoiexternal.yaml.tmpl}"
"${VISUAL:-${EDITOR:-vi}}" "${CZ_EXT}"
}
2025-03-17 21:43:04 +00:00
czed() {
chezmoi edit "${@}" --apply --interactive
}
2024-09-19 04:31:48 +00:00
fi
2025-03-17 20:31:01 +00:00
# vim: set ft=bash sw=4 sts=4 et: