dotfiles/home/private_dot_config/zsh/dot_zshrc

25 lines
489 B
Text
Raw Normal View History

2023-02-20 10:10:52 -06:00
#!/usr/bin/env zsh
2023-02-17 09:26:31 -06:00
2023-11-29 16:35:38 -06:00
[[ -r $ZDOTDIR/.zstyles ]] && . $ZDOTDIR/.zstyles
2023-02-17 09:26:31 -06:00
[[ -d ${ZDOTDIR:-~}/.antidote ]] ||
git clone https://github.com/mattmc3/antidote ${ZDOTDIR:-~}/.antidote
2024-11-25 13:39:49 -06:00
# antidote load
# a "faster" antidote load
zplugins=${ZDOTDIR:-~}/.zplugins
if [[ ! ${zplugins}.zsh -nt $zplugins ]]; then
(
source ${ZDOTDIR:-~}/.antidote/antidote.zsh
antidote bundle <${zplugins} > ${zplugins}.zsh
)
fi
source ${zplugins}.zsh
2023-02-17 09:26:31 -06:00
2024-10-30 14:52:13 -05:00
path=(
$HOME/{,.dotfiles/}{,s}bin(N)
$path
)