Closed himekifee closed 12 months ago
I looks like you're trying to use antidote in dynamic mode instead of static mode. For dynamic mode, you need to initialize antidote with source <(antidote init)
.
# Clone antidote if necessary.
[[ -e ${ZDOTDIR:-~}/.antidote ]] ||
git clone https://github.com/mattmc3/antidote.git ${ZDOTDIR:-~}/.antidote
# Source antidote.
source ${ZDOTDIR:-~}/.antidote/antidote.zsh
# Initialize dynamic mode
source <(antidote init)
# Bundle plugins individually
antidote bundle zimfw/bira
Dynamic mode means you don't have to have a ${ZDOTDIR:-~}/.zsh_plugins.txt
file, but it also means you don't get the benefits of static loading your plugins. See https://getantidote.github.io for more details.
Hi. I have a minimum
.zshrc
file like the followingWhen I run
antidote bundle zimfw/bira
, it prints the following to the console instead of running the two commandsIf run after
set -x
, it looks like the followingRun with clean env does not work either
It does work if I run
source /home/grider/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-zimfw-SLASH-bira/bira.zsh-theme
manually though. Is there anything I'm missing? Transit from antigen so not quite understood the concept of antodote. Thanks.